-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 968 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": "warehouse-sim-2021",
"version": "1.0.0",
"description": "warehouse simulator game",
"scripts": {
"build-debug": "parcel src/index.html --target debug --cache-dir build/cache --dist-dir build/debug",
"build-release": "parcel build src/index.html --target release --cache-dir build/cache --dist-dir build"
},
"author": "",
"license": "ISC",
"dependencies": {
"excalibur": "^0.24.5",
"jquery": "^3.6.0",
"parcel": "^2.0.0-beta.2"
},
"repository": {
"type": "git",
"url": "https://github.com/herobank110/warehouse-sim-2021.git"
},
"targets": {
"debug": {
"sourceMap": {
"inline": true
}
},
"release": {
"publicUrl": "./",
"outputFormat": "global"
}
},
"devDependencies": {
"@parcel/transformer-glsl": "^2.0.0-beta.2",
"@parcel/transformer-image": "^2.0.0-beta.2",
"@parcel/transformer-sass": "^2.0.0-beta.2",
"@types/jquery": "^3.5.5"
}
}