-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.34 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
{
"name": "clash-of-hex",
"version": "1.0.0",
"description": "A GameFi dApp that allows players to compete with capture the most cells on an hex battlefield.",
"scripts": {
"postinstall": "run-p deps-*",
"deps-app": "cd src/app && npm i",
"deps-web": "cd src/web && npm i",
"deps-ui": "cd src/ui && npm i",
"gh-pages": "gh-pages -d dist -r $(git remote get-url gh-pages) -b main -m \"deploy ref:$(git describe --tags --always --dirty)\"",
"build": "run-p --max-parallel 1 build-clean build-app build-web",
"build-clean-all": "rm -fr dist node_modules src/*/node_modules src/*/dist src/*/build",
"build-clean": "rm -fr dist",
"build-app": "mkdir -p dist && cd src/app && npm run build",
"build-web": "mkdir -p dist && cd src/web && npm run build && cp -r dist/* ../../dist/",
"start": "npm run build && serve dist",
"deploy": "run-p --max-parallel 1 build gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clash-of-hex/dapp.git"
},
"keywords": [],
"author": "clash-of-hex",
"license": "MIT",
"bugs": {
"url": "https://github.com/clash-of-hex/dapp/issues"
},
"homepage": "https://github.com/clash-of-hex/dapp#readme",
"devDependencies": {
"gh-pages": "^4.0.0",
"npm-run-all": "^4.1.5",
"pwa-asset-generator": "^6.2.0",
"serve": "^14.1.1"
}
}