-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "Bouncification",
"version": "1.0.0",
"description": "Bouncification",
"scripts": {
"start": "parcel src/client/index.html -p 8000 --out-dir dist/client",
"start-server": "ts-node-dev --project tsconfig.server.json --respawn -r tsconfig-paths/register src/index.ts",
"build": "./build.sh",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
},
"author": "rzinurov",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rzinurov/bouncification.git"
},
"homepage": "https://github.com/rzinurov/bouncification",
"devDependencies": {
"@colyseus/loadtest": "^0.14.4",
"@colyseus/testing": "^0.14.21",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1",
"@types/matter-js": "^0.17.6",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^8.5.0",
"minimist": ">=1.2.2",
"parcel-bundler": "^1.12.5",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.4.3",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"tscpaths": "0.0.9",
"typescript": "^3.8.3"
},
"dependencies": {
"@colyseus/arena": "^0.14.22",
"@colyseus/command": "^0.2.0",
"@colyseus/monitor": "^0.14.20",
"colyseus": "^0.14.20",
"cors": "^2.8.5",
"express": "^4.16.4",
"matter": "^0.2.0",
"matter-js": "^0.18.0",
"phaser": "^3.55.2",
"phaser3-rex-plugins": "^1.1.65",
"regenerator-runtime": "^0.13.9",
"unique-names-generator": "^4.6.0"
},
"parcelCleanPaths": [
"dist/client"
],
"staticFiles": {
"staticPath": "src/client/public",
"watcherGlob": "**"
},
"alias": {
"client": "./src/client",
"common": "./src/common",
"server": "./src/server"
}
}