-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "phaser3-parcel-template",
"version": "1.0.0",
"description": "A typescript template project for Phaser 3 using Parceljs",
"scripts": {
"start": "parcel src/client/index.html -p 8000",
"start-server": "ts-node-dev --project tsconfig.server.json src/server/index.ts",
"build": "parcel build src/client/index.html --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
},
"author": "supertommy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ourcade/phaser3-parcel-template.git"
},
"homepage": "https://github.com/ourcade/phaser3-parcel-template",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"minimist": ">=1.2.2",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.4.3",
"ts-node-dev": "^1.1.1",
"typescript": "^3.8.3",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.1"
},
"dependencies": {
"@colyseus/command": "^0.1.6",
"@colyseus/monitor": "^0.12.2",
"colyseus": "^0.14.7",
"colyseus.js": "^0.14.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"phaser": "^3.50.1",
"regenerator-runtime": "^0.13.7"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}