-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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": "shooter",
"version": "0.0.1",
"scripts": {
"re:build": "bsb -make-world",
"re:clean": "bsb -clean-world",
"re:start": "bsb -make-world -w",
"parcel:bundle": "parcel build src/index.html --public-url ./",
"parcel:dev": "parcel src/index.html --open",
"start": "yarn concurrently \"yarn re:start\" \"yarn parcel:dev\"",
"build": "yarn re:clean && yarn re:build && yarn parcel:bundle"
},
"keywords": [
"rescript",
"game"
],
"author": "",
"license": "MIT",
"devDependencies": {
"bs-platform": "*",
"concurrently": "^5.3.0",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.2.0",
"parcel-plugin-static-files-copy": "^2.5.0"
},
"dependencies": {
"@ambientlight/bs-rx": "^0.2.3",
"@pixi/filter-motion-blur": "^3.1.1",
"bs-fetch": "^0.6.2",
"bs-pixi": "^0.1.13",
"bs-webapi": "^0.19.1",
"global": "^4.4.0",
"reason-promise": "^1.1.2"
},
"staticFiles": {
"staticPath": [
"src/static"
]
}
}