-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "phaser3-parcel-template",
"version": "1.0.0",
"description": "A template project for Phaser3 using Parceljs",
"scripts": {
"start": "parcel src/index.html -p 8000",
"build": "parcel build src/index.html --out-dir dist",
"build-gh": "parcel build src/index.html --out-dir dist --public-url /coronavirus-pop-phaser/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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": {
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.2.1",
"sass": "^1.26.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/lodash": "^4.14.149",
"jsx-dom": "^6.4.13",
"lodash": "^4.17.15",
"phaser": "^3.22.0",
"regenerator-runtime": "^0.13.3",
"rxjs": "^6.5.4"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "public",
"watcherGlob": "**"
}
}