forked from Steel-tech/SteelCFO
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.53 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
{
"name": "steelcfo",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:reset": "prisma migrate reset --force && tsx prisma/seed.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.117.1",
"@auth/prisma-adapter": "^2.7.4",
"@prisma/adapter-pg": "^7.9.1",
"@prisma/client": "^7.9.1",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.469.0",
"next": "^16.2.1",
"next-auth": "^5.0.0-beta.30",
"papaparse": "^5.4.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^2.15.0",
"sonner": "^1.7.0",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^22.10.0",
"@types/papaparse": "^5.3.15",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.20",
"eslint": "^9.17.0",
"eslint-config-next": "^16.2.1",
"postcss": "^8.4.49",
"prisma": "^7.9.1",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.11"
}
}