-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.39 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.39 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
{
"name": "reev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm migrate:deploy && pnpm build:reevjs && next build",
"migrate:deploy": "tsx lib/migrate-all.ts",
"build:reevjs": "cd reevjs && pnpm install && tsx build.ts",
"build:audit": "cd audit && npm install && npm run build",
"migrate": "tsx lib/migrate.ts",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@headlessui/react": "^2.2.9",
"@tanstack/react-query": "5.90.5",
"axios": "^1.7.7",
"bcryptjs": "^3.0.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.34.1",
"jsdom": "^25.0.1",
"lucide-react": "^0.555.0",
"nanoid": "^5.0.9",
"next": "16.0.10",
"next-auth": "^4.24.5",
"pg": "^8.11.3",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"recharts": "^3.5.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@types/bcryptjs": "^3.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20",
"@types/pg": "^8.11.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.0",
"dotenv": "^17.2.3",
"eslint": "^8",
"eslint-config-next": "^16.0.5",
"postcss": "^8.4.0",
"tailwindcss": "^3.4.0",
"tsx": "^4.7.0",
"typescript": "^5"
}
}