forked from projectsophon/darkforest-local
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.48 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "darkforest-local",
"private": true,
"engines": {
"node": ">=14"
},
"workspaces": [
"packages/types",
"packages/events",
"packages/hashing",
"packages/snarks",
"packages/settings",
"eth",
"packages/contracts",
"packages/constants",
"packages/hexgen",
"packages/serde",
"packages/network",
"packages/ui",
"packages/gamelogic",
"packages/procedural",
"packages/renderer",
"circuits",
"client"
],
"scripts": {
"prepare": "yarn workspaces run prepare",
"test": "yarn workspaces run test",
"lint": "yarn workspaces run lint",
"format": "yarn workspaces run format",
"deploy:contracts": "yarn workspace eth hardhat:dev deploy --whitelist false",
"deploy:client": "netlify build && netlify deploy",
"deploy:client:prod": "netlify build && netlify deploy --prod",
"wait:node": "wait-on tcp:8545",
"start:client": "yarn workspace client start",
"start:node": "yarn workspace eth hardhat:node",
"start:game": "run-s wait:node deploy:contracts add:planets start:client",
"add:planets": "yarn workspace eth hardhat:dev game:createPlanets",
"start": "run-p start:node start:game",
"clean:workspaces": "yarn workspaces run clean",
"clean:self": "del-cli node_modules/",
"clean": "run-s clean:workspaces clean:self"
},
"devDependencies": {
"del-cli": "^4.0.1",
"npm-run-all": "^4.1.5",
"wait-on": "^6.0.0"
},
"resolutions": {
"ts-node": "9.1.1"
}
}