-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "autochessia",
"private": true,
"scripts": {
"build": "pnpm recursive run build",
"dev": "concurrently -n contracts,client -c cyan,magenta \"cd packages/contracts && pnpm run dev\" \"cd packages/client && pnpm run dev\"",
"dev:client": "pnpm --filter 'client' run dev",
"dev:contracts": "pnpm --filter 'contracts' dev",
"foundry:up": "curl -L https://foundry.paradigm.xyz | bash && bash $HOME/.foundry/bin/foundryup",
"mud:up": "pnpm mud set-version --tag main && pnpm install",
"prepare": "(forge --version || pnpm foundry:up);pnpm simple-git-hooks",
"test": "pnpm recursive run test"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.ts": [
"prettier -w"
],
"*.tsx": [
"prettier -w"
],
"*.sol": [
"forge fmt"
]
},
"devDependencies": {
"@latticexyz/cli": "2.0.0-next.14",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"concurrently": "^8.0.1",
"eslint": "8.29.0",
"git-cz": "^4.9.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"simple-git-hooks": "^2.9.0",
"typescript": "5.1.6"
},
"engines": {
"node": "18.x",
"pnpm": "8.x"
},
"dependencies": {
"eslint-plugin-react": "7.31.11"
}
}