-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.59 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
{
"name": "2dgame",
"dependencies": {
"@msgpack/msgpack": "^1.12.1",
"@types/koa": "^2.11.3",
"@types/redis": "^2.8.20",
"@types/uglify-js": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"body-parser": "^1.19.0",
"browserify": "^16.5.1",
"cookie-parser": "^1.4.5",
"esmify": "^2.1.1",
"express": "^4.17.1",
"googleapis": "^50.0.0",
"koa-static": "^5.0.0",
"minify-stream": "^2.0.0",
"nanoid": "^3.1.9",
"phaser": "^3.22.0",
"redis": "^3.0.2",
"string-to-stream": "^3.0.1",
"tsify": "^4.0.1",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v17.3.0",
"uid": "^1.0.0",
"uuid": "^8.1.0"
},
"scripts": {
"build": "ts-node --project ./packages/engine/src/client/tsconfig.json ./packages/client/build.ts",
"build-dev": "ts-node --project ./packages/engine/src/client/tsconfig.json ./packages/client/build.ts --dev",
"server": "ts-node --project ./packages/server/tsconfig.json ./packages/server/run.ts",
"server-dev": "ts-node --project ./packages/server/tsconfig.json ./packages/server/run.ts -d",
"lint": "eslint **/*.ts"
},
"devDependencies": {
"browser-pack-flat": "^3.4.2",
"commander": "^5.0.0",
"common-shakeify": "^0.6.2",
"envify": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.0",
"tinyify": "^2.5.2",
"ts-node": "^8.8.2",
"typescript": "^3.8.3",
"uglify-js": "^3.8.1",
"uglifyify": "^5.0.2",
"unassertify": "^2.1.1"
}
}