-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.97 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.97 KB
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": "gigstream-mx",
"version": "1.0.0",
"description": "Real-time freelance marketplace on Somnia Data Streams",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:coverage": "vitest run --coverage",
"contracts:compile": "cd contracts && hardhat compile",
"contracts:test": "cd contracts && hardhat test",
"contracts:deploy-testnet": "cd contracts && hardhat run scripts/deploy.js --network somniaTestnet",
"contracts:verify": "cd contracts && hardhat run scripts/verify-direct.js --network somniaTestnet",
"security:slither": "slither contracts/src",
"deploy:vercel": "vercel --prod",
"deploy:contracts": "pnpm run contracts:deploy-testnet",
"deploy:full": "pnpm run build && pnpm run contracts:deploy-testnet && pnpm run deploy:vercel"
},
"dependencies": {
"@ai-sdk/google": "^1.0.0",
"@google/generative-ai": "^0.24.1",
"@radix-ui/react-slot": "^1.0.2",
"@reown/appkit": "^1.8.14",
"@reown/appkit-adapter-wagmi": "^1.8.14",
"@somnia-chain/streams": "^0.11.0",
"@tanstack/react-query": "^5.0.0",
"@wagmi/core": "^2.22.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"date-fns": "^4.1.0",
"framer-motion": "^11.0.0",
"lucide-react": "^0.400.0",
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tailwind-merge": "^2.5.0",
"viem": "^2.40.3",
"wagmi": "^2.19.5"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.0",
"dotenv": "^17.2.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.4.0",
"vitest": "^1.0.0"
}
}