-
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.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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": "cs2vault",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "npx prisma generate",
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint",
"db:seed": "npx prisma db seed",
"db:push:turso": "npx tsx prisma/push-schema.ts && npx tsx prisma/seed.ts",
"test": "vitest run",
"test:watch": "vitest",
"db:migrate": "npx prisma migrate dev",
"db:studio": "npx prisma studio"
},
"dependencies": {
"@google/genai": "^1.42.0",
"@libsql/client": "^0.17.0",
"@prisma/adapter-libsql": "^7.4.2",
"@prisma/client": "^7.4.1",
"@vercel/speed-insights": "^1.3.1",
"dotenv": "^17.3.1",
"lightweight-charts": "^5.1.0",
"next": "16.1.6",
"next-auth": "^5.0.0-beta.30",
"openai": "^6.22.0",
"prisma": "^7.4.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-icons": "^5.5.0",
"react-markdown": "^10.1.0",
"rss-parser": "^3.13.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.19.33",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jsdom": "^28.1.0",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^4.0.18"
}
}