-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.89 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
61
62
63
64
65
66
67
68
{
"name": "inflashield",
"version": "0.1.0",
"description": "On-chain inflation hedge agent — protect purchasing power anywhere in the world",
"private": true,
"scripts": {
"dev": "npm run db:setup && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"test": "jest --passWithNoTests",
"check:apis": "tsx scripts/checkApis.ts",
"db:setup": "node scripts/setup-db.js",
"db:push": "npm run db:setup && drizzle-kit push",
"db:migrate": "npm run db:setup && tsx src/db/migrate.ts",
"db:studio": "drizzle-kit studio",
"postinstall": "npm run db:setup --silent || true"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^2.1.2",
"@react-three/drei": "^9.122.0",
"@react-three/fiber": "^8.18.0",
"@studio-freight/lenis": "^1.0.42",
"@tanstack/react-query": "^5.45.1",
"@types/gsap": "^1.20.2",
"axios": "^1.7.7",
"bcryptjs": "^2.4.3",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.40.0",
"gsap": "^3.15.0",
"next": "14.2.3",
"next-auth": "^5.0.0-beta.20",
"pg": "^8.11.3",
"react": "^18",
"react-countup": "^6.5.3",
"react-dom": "^18",
"viem": "^2.13.13",
"wagmi": "^2.10.8",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/node": "^20",
"@types/pg": "^8.11.6",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.19",
"dotenv-cli": "^11.0.0",
"drizzle-kit": "^0.31.10",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"tailwindcss": "^3.4.3",
"tsx": "^4.10.5",
"typescript": "^5"
},
"main": "next.config.js",
"directories": {
"doc": "docs"
},
"keywords": [],
"author": "",
"license": "ISC"
}