-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 952 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": "phaser-ce-parceljs",
"version": "1.9.0",
"description": "Phaser CE boilerplate with typescript, babel and parcel bundler.",
"scripts": {
"start": "parcel serve src/index.html --out-dir dev/",
"build": "parcel build src/index.html --out-dir build/ --public-url ./",
"clean-build": "rm -r ./build"
},
"keywords": [
"phaser",
"phaser-ce",
"phaser2",
"parceljs",
"typescript",
"babel"
],
"author": "Cerlancism",
"repository": {
"type": "git",
"url": "https://github.com/Cerlancism/Phaser-CE-TypeScript-ParcelJS.git"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@types/parcel-env": "^0.0.0",
"parcel": "^1.12.4",
"typescript": "^4.0.3"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"core-js": "^3.6.5",
"phaser-ce": "^2.16.0"
}
}