-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.64 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": "template-parcel-ts",
"version": "1.2.0",
"description": "A Phaser 3 TypeScript template using Parcel 2 as the bundler.",
"source": "./index.html",
"browserslist": "> 0.25%, last 2 versions, not dead",
"scripts": {
"dev": "node log.js dev &parcel index.html --no-cache --config ./parcel/.parcel.dev --open",
"build": "node log.js build &parcel build index.html --public-url _relativeroute_ --no-source-maps --log-level error --config ./parcel/.parcel.prod",
"dev-nolog": "parcel index.html --no-cache --config ./parcel/.parcel.dev --open",
"build-nolog": "parcel build index.html --public-url _relativeroute_ --no-source-maps --log-level error --config ./parcel/.parcel.prod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phaserjs/template-parcel-ts.git"
},
"author": "Phaser Studio <[email protected]> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"bugs": {
"url": "https://github.com/phaserjs/template-parcel-ts/issues"
},
"homepage": "https://github.com/phaserjs/template-parcel-ts#readme",
"devDependencies": {
"@parcel/transformer-glsl": "^2.12.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"express": "^4.19.2",
"parcel": "^2.12.0",
"parcel-reporter-clean-dist": "^1.0.4",
"parcel-reporter-static-files-copy": "^1.5.3",
"process": "^0.11.10",
"typescript": "^5.4.5"
},
"dependencies": {
"phaser": "^3.87.0"
},
"staticFiles": {
"staticPath": "public"
}
}