-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.59 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
{
"name": "mud-template-react",
"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": "if [ \"$SKIP_FOUNDRY\" != \"true\" ]; then (forge --version || pnpm foundry:up); fi && husky install",
"test": "pnpm recursive run test",
"preview": "tsc && vite build && vite preview",
"lint": "pnpm recursive run lint",
"type-check": "pnpm recursive run type-check"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@total-typescript/ts-reset": "^0.5.1",
"@latticexyz/cli": "2.0.0-next.11",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
"concurrently": "^8.0.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-tailwindcss": "^3.13.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"rimraf": "^3.0.2",
"typescript": "^5.2.2",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4"
},
"engines": {
"node": "18.x",
"pnpm": "8.x"
}
}