-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
33 lines (33 loc) · 955 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
{
"name": "decentralized-game-template",
"version": "0.0.1",
"description": "Decentralized Game Example",
"scripts": {
"serve": "sirv",
"start": "parcel index.html --open",
"build": "npm run clean && parcel build index.html --dist-dir ./dist",
"clean": "rimraf ./dist ./parcel-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alto-io/decentralized-game-example"
},
"author": "outplay.games",
"license": "ISC",
"bugs": {
"url": "https://github.com/alto-io/decentralized-game-example/issues"
},
"homepage": "https://github.com/alto-io/decentralized-game-example#readme",
"devDependencies": {
"@parcel/config-default": "2.0.0-beta.1",
"parcel": "2.0.0-beta.1",
"parcel-reporter-static-files-copy": "^1.2.2",
"sirv-cli": "^1.0.11"
},
"dependencies": {},
"staticFiles": {
"staticPath": "assets",
"staticOutPath": "assets",
"watcherGlob": "**"
}
}