-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 999 Bytes
/
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
{
"name": "block-bounties",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"forge:build": "turbo run build --filter=bounty-escrow",
"forge:test": "turbo run test --filter=bounty-escrow",
"forge:fmt": "turbo run prettier:write --filter=bounty-escrow",
"forge:snapshot": "turbo run test:gas --filter=bounty-escrow",
"forge:anvil": "turbo run anvil --filter=bounty-escrow",
"forge:deploy": "turbo run deploy --filter=bounty-escrow"
},
"devDependencies": {
"prettier": "^3.2.5",
"turbo": "^2.1.1",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@web3auth/base": "^8.12.4",
"@web3auth/modal": "^8.12.7",
"framer-motion": "^11.5.4",
"lucide-react": "^0.439.0",
"react-feather": "^2.0.10"
}
}