-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.1 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.1 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
{
"name": "stockvision-monorepo",
"private": true,
"version": "1.0.0",
"description": "StockVision Monorepo - Next.js Frontend + FastAPI Backend",
"packageManager": "npm@10.5.0",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"banner": "node banner.js",
"dev": "npm run banner && turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"lint": "turbo run lint",
"test": "turbo run test",
"install:all": "npm install && npm install --workspace=frontend && npm install --workspace=backend"
},
"dependencies": {
"@prisma/client": "^6.14.0",
"@tanstack/react-query": "^5.85.0",
"@types/bcryptjs": "^2.4.6",
"@vercel/analytics": "^1.5.0",
"bcryptjs": "^3.0.2",
"figlet": "^1.9.3",
"next-auth": "^4.24.12",
"prisma": "^6.14.0",
"react-hot-toast": "^2.6.0",
"react-intersection-observer": "^9.16.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/next-auth": "^3.13.0",
"concurrently": "^8.2.2",
"turbo": "^2.5.5"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}