forked from fractalliter/express-react-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.39 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "awesome_game",
"version": "0.0.1",
"description": "An Express application",
"main": "server/index.js",
"scripts": {
"build": "webpack --mode production",
"start": "npm run build && npm run server",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "tsc -p tsconfig.server.json && node server/",
"build:server": "tsc -p tsconfig.server.json",
"dev": "concurrently \"nodemon\" \"npm run client\"",
"server-dev": "nodemon"
},
"author": "Amir Alcocer",
"license": "MIT",
"dependencies": {
"express": "^4.16.3",
"phaser": "^3.55.2",
"socket.io": "^4.1.2"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.7",
"@types/express": "^4.17.8",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"awesome-typescript-loader": "^5.2.1",
"clean-webpack-plugin": "^1.0.0",
"concurrently": "^4.0.0",
"copy-webpack-plugin": "^5.0.3",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.17.3",
"source-map-loader": "^0.2.4",
"tsc": "^2.0.3",
"typescript": "^4.1.3",
"webpack": "^4.5.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.3"
}
}