forked from greenpill-dev-guild/camp-green
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.77 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
{
"name": "web3-starter-kit",
"version": "0.0.0",
"private": true,
"keywords": [
"web3",
"dapp",
"ethereum",
"solidity",
"react",
"typescript",
"pnpm",
"foundry"
],
"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",
"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,CONTRACTS\" -c \"bgMagenta.bold,bgGreen.bold,bgCyan.bold\" \"pnpm run dev:app\" \"pnpm run dev:web\" \"pnpm run dev:contracts\"",
"dev:app": "pnpm --filter 'app' run dev",
"dev:web": "pnpm --filter 'web' run dev",
"dev:contracts": "pnpm --filter 'contracts' run dev",
"deploy:local": "pnpm --filter 'contracts' run deploy:local --network local",
"deploy:base-sepolia": "pnpm --filter 'contracts' run deploy:base-sepolia --network base-sepolia",
"deploy:base": "pnpm --filter 'contracts' run deploy:base --network base"
},
"dependencies": {
"dotenv": "16.3.1",
"ethers": "^6.7.1",
"viem": "^2.7.16"
},
"devDependencies": {
"@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"
}
}