-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.1 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
{
"name": "this-cursed-machine",
"version": "0.2.0",
"repository": {
"type": "git",
"url": "https://github.com/moving-castles/this-cursed-machine.git"
},
"scripts": {
"build": "pnpm recursive run build",
"clean": "pnpm recursive run clean",
"dev": "mprocs",
"foundry:up": "curl -L https://foundry.paradigm.xyz | bash && bash $HOME/.foundry/bin/foundryup",
"dev:client": "pnpm --filter 'client' run dev",
"dev:contracts": "pnpm --filter 'contracts' run dev",
"playtest": "pnpm --filter 'contracts' run deploy:testnet && pnpm run build && netlify deploy --prod",
"test": "pnpm recursive run test"
},
"devDependencies": {
"@latticexyz/account-kit": "2.0.12-account-kit-5eff5e311",
"@latticexyz/cli": "2.0.12-account-kit-5eff5e311",
"@pimlicolabs/alto": "github:latticexyz/alto#3192a9a",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"eslint": "8.56.0",
"mprocs": "^0.6.4",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"wait-port": "^1.1.0"
},
"engines": {
"node": "18.x",
"pnpm": "8.x"
}
}