forked from BreadchainCoop/crowdstaking-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.9 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
{
"name": "crowdstaking-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"test": "playwright test",
"build": "next build",
"serve": "serve out",
"deploy": "npm install -g [email protected] && pnpm install --prod=true --frozen-lockfile && pnpm run build",
"chain:start": "anvil --fork-url https://rpc.gnosis.gateway.fm --chain-id 31337 --block-time 5",
"chain:setup": "tsx scripts/setup.ts && cd contracts && forge script script/Deploy.s.sol:Deploy --broadcast --rpc-url http://localhost:8545 --private-key 0x2a871d0798f97d79848a013d4936a73bf4cc922c825d33c1cf7073dff6d409c6 --legacy",
"lint": "next lint",
"find-deadcode": "ts-prune | grep -v '(used in module)'"
},
"dependencies": {
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-toast": "^1.1.5",
"@rainbow-me/rainbowkit": "^1.3.1",
"@safe-global/safe-apps-sdk": "^8.1.0",
"@sentry/nextjs": "^7.99.0",
"@sentry/react": "^7.109.0",
"@wagmi/core": "^1.4.12",
"blo": "^1.1.1",
"clsx": "^2.0.0",
"date-fns": "^3.6.0",
"framer-motion": "^10.16.4",
"nanoid": "^5.0.7",
"next": "14.1.0",
"pino-pretty": "^11.2.2",
"react": "^18",
"react-dom": "^18",
"react-query": "^3.39.3",
"viem": "^1.15.4",
"wagmi": "^1.4.12"
},
"devDependencies": {
"@playwright/test": "^1.43.1",
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"dotenv": "^16.3.1",
"env-cmd": "^10.1.0",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"postcss": "^8",
"serve": "^14.2.1",
"storybook": "^7.5.0",
"tailwindcss": "3.4.1",
"ts-prune": "^0.10.3",
"tsx": "^4.19.1",
"typescript": "^5"
},
"packageManager": "[email protected]"
}