-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.44 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
{
"name": "phaser3-vs-kaboomjs",
"version": "1.0.0",
"description": "3 different mechanics done in Phaser 3 and Kaboom.js",
"scripts": {
"start:space": "parcel serve src/space/index.html src/space/*/index.html -p 3000",
"build:space": "parcel build src/space/index.html src/space/*/index.html --dist-dir dist",
"start:blocks": "parcel serve src/blocks/index.html src/blocks/*/index.html -p 3000",
"build:blocks": "parcel build src/blocks/index.html src/blocks/*/index.html --dist-dir dist",
"start:astar": "parcel serve src/astar/index.html src/astar/*/index.html -p 3000",
"build:astar": "parcel build src/astar/index.html src/astar/*/index.html --dist-dir dist",
"clean": "rm -rf ./dist && rm -rf ./.parcel-cache",
"test": "echo \"Error: no test specified\" && exit 1"
},
"browserslist": "> 0.2%",
"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/transformer-image": "^2.0.0-rc.0",
"eslint": "^6.8.0",
"minimist": ">=1.2.2",
"parcel": "^2.0.0-rc.0",
"parcel-reporter-static-files-copy": "^1.3.0",
"typescript": "^4.3.2"
},
"dependencies": {
"easystarjs": "^0.4.4",
"kaboom": "^2000.0.0-beta.24",
"phaser": "^3.55.2"
},
"alias": {
"kaboom": "./node_modules/kaboom/dist/kaboom.mjs"
},
"staticFiles": {
"staticPath": "public"
}
}