-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 935 Bytes
/
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
{
"name": "spaceshooter",
"version": "1.0.0",
"description": "multiplayer phaser game",
"scripts": {
"start": "parcel src/client/index.html -p 8000",
"build": "parcel build src/client/index.html --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"babel-eslint": "^10.1.0",
"cssnano": "^4.1.11",
"eslint": "^6.8.0",
"install-peers": "^1.0.3",
"minimist": ">=1.2.2",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.4.3",
"postcss": "^8.3.0",
"typescript": "^4.2.4"
},
"dependencies": {
"bootstrap-icons": "^1.5.0",
"colyseus.js": "^0.14.12",
"matter": "^0.2.0",
"phaser": "^3.50.1",
"regenerator-runtime": "^0.13.7"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "src/client/assets",
"watcherGlob": "**"
}
}