-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "web3-starter-kit",
"version": "0.0.0",
"private": true,
"keywords": [
"web3",
"starter",
"kit",
"dapp",
"ethereum",
"solidity",
"hardhat",
"react",
"next",
"typescript",
"pnpm",
"foundry",
"lattice",
"latticexyz"
],
"workspaces": {
"packages": [
"packages/*",
"packages/clients/*"
],
"nohoist": [
"**/@openzeppelin/contracts",
"**/@openzeppelin/contracts/**",
"**/@openzeppelin/contracts-upgradeable",
"**/@openzeppelin/contracts-upgradeable/**"
]
},
"scripts": {
"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)",
"build": "pnpm recursive run build",
"lint": "pnpm recursive run lint",
"test": "pnpm recursive run test",
"dev": "concurrently -n \"APP,WEB,API,CONTRACTS,GRAPH\" -c \"bgMagenta.bold,bgGreen.bold,bgCyan.bold,bgYellow.bold,bgWhite.bold\" \"pnpm run dev:app\" \"pnpm run dev:web\" \"pnpm run dev:api\" \"pnpm run dev:contracts\" \"pnpm run dev:graph\"",
"dev:app": "pnpm --filter 'app' run dev",
"dev:web": "pnpm --filter 'web' run dev",
"dev:api": "pnpm --filter 'api' run dev",
"dev:graph": "pnpm --filter 'graph' run dev",
"dev:contracts": "pnpm --filter 'contracts' run dev",
"deploy:local": "pnpm --filter 'contracts' run deploy:local --network local",
"deploy:base": "pnpm --filter 'contracts' run deploy:base --network base",
"deploy:base-goerli": "pnpm --filter 'contracts' run deploy:base-goerli --network base-goerli"
},
"dependencies": {
"dotenv": "16.3.1",
"ethers": "^6.7.1",
"viem": "^1.10.9"
},
"devDependencies": {
"@latticexyz/cli": "2.0.0-next.9",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"concurrently": "8.2.1",
"eslint": "^8.50.0",
"rimraf": "^3.0.2",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"wait-port": "1.1.0"
},
"engines": {
"node": "18.x",
"pnpm": "8.x"
}
}