-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 3.51 KB
/
package.json
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "mmo",
"version": "1.0.0",
"main": "server/dist/index.js",
"repository": "https://tim-ings@github.com/tim-ings/mmo.git",
"author": "Tim <tim@tim-ings.com>",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"scripts": {
"watch:server:ts": "NODE_ENV=development tsc -w -p tsconfig.server.json -outDir dist/",
"watch:server:node": "NODE_ENV=development nodemon dist/server/index.js",
"watch:client": "NODE_ENV=development yarn webpack-dev-server --watch --config ./webpack.client.config.js",
"watch:server": "NODE_ENV=development concurrently -k -p \"[{name}]\" -n \"TS,Node\" -c \"yello.bold, cyan.bold\" \"yarn watch:server:ts\" \"yarn watch:server:node\"",
"watch:game": "NODE_ENV=development concurrently -k -p \"[{name}]\" -n \"TS Server,WP Client,Node\" -c \"yello.bold, cyan.bold\" \"yarn watch:server:ts\" \"yarn watch:client\" \"yarn watch:server:node\"",
"watch:editor": "NODE_ENV=development yarn webpack-dev-server --watch --config ./webpack.editor.config.js",
"clean": "rm -rf dist/*",
"clean:client": "rm -rf dist/client/*",
"clean:server": "rm -rf dist/server/*",
"clean:editor": "rm -rf dist/editor/*",
"build:client": "NODE_ENV=production yarn webpack --config ./webpack.client.config.js",
"build:server": "NODE_ENV=production tsc -p tsconfig.server.json -outDir dist/",
"build:editor": "NODE_ENV=production yarn webpack --config ./webpack.editor.config.js",
"validate": "tsc --noEmit",
"deploy:client": "yarn build:client && yarn gh-pages -d ./dist/client"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/express": "^4.17.2",
"@types/filesystem": "^0.0.29",
"@types/node": "^13.1.4",
"@types/pathfinding": "^0.0.4",
"@types/socket.io": "2.1.12",
"@types/socket.io-client": "1.4.34",
"@types/stats.js": "^0.17.0",
"@types/three": "^0.103.2",
"@types/uuid": "^3.4.6",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"awesome-typescript-loader": "^5.2.1",
"bcrypt": "^5.0.0",
"concurrently": "^5.0.2",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^5.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.7.0",
"events": "^3.1.0",
"express": "^4.17.1",
"file-loader": "^5.0.2",
"fs": "^0.0.1-security",
"global": "^4.4.0",
"html-webpack-plugin": "^3.2.0",
"idb-keyval": "^3.2.0",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.9.0",
"nodemon": "^2.0.2",
"pathfinding": "https://github.com/tim-ings/PathFinding.js/",
"pg": "^7.17.0",
"prom-client": "12.0.0",
"reflect-metadata": "^0.1.13",
"remove": "^0.1.5",
"socket.io": "3.0.4",
"socket.io-client": "3.0.4",
"sqlite3": "^4.1.1",
"stats.js": "^0.17.0",
"style-loader": "^1.1.2",
"three": "^0.112.1",
"ts-key-enum": "^2.0.2",
"ts-loader": "^6.2.1",
"ts-node": "^8.5.4",
"ts-shader-loader": "^1.0.6",
"tsc": "^1.20150623.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typeorm": "^0.2.22",
"typescript": "^3.7.4",
"url-loader": "^3.0.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-glsl-loader": "^1.0.1",
"webpack-pwa-manifest": "^4.2.0",
"workbox-webpack-plugin": "^5.0.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"gh-pages": "^3.1.0"
}
}