-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.46 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.46 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "smartclass-embedded-system-project",
"version": "1.0.0",
"private": true,
"author": "Mr-MRF-Dev",
"homepage": "https://github.com/Mr-MRF-Dev/SmartClass-Embedded-System-Project",
"repository": {
"type": "git",
"url": "https://github.com/Mr-MRF-Dev/SmartClass-Embedded-System-Project.git"
},
"bugs": {
"url": "https://github.com/Mr-MRF-Dev/SmartClass-Embedded-System-Project/issues"
},
"license": "MIT",
"scripts": {
"dev": "next dev",
"start": "next start",
"lint": "eslint",
"build": "npm run db:reset && next build",
"build:next": "next build",
"build:generic": "prisma generate && next build",
"build:prod": "prisma generate && prisma migrate deploy && prisma db push && next build",
"build:prod:clean": "bun run db:reset && next build",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:generate": "prisma generate",
"db:seed": "prisma db seed",
"db:reset": "prisma generate && prisma migrate reset --force && prisma db push --accept-data-loss --force-reset && prisma db seed",
"prepare": "husky"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"dependencies": {
"@base-ui/react": "^1.4.1",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@prisma/pg-worker": "^6.9.0",
"@tabler/icons-react": "^3.44.0",
"@types/bcryptjs": "^3.0.0",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"next": "16.2.6",
"next-auth": "^4.24.14",
"ollama": "^0.6.3",
"react": "19.2.6",
"react-dom": "19.2.6",
"recharts": "^3.8.1",
"shadcn": "^4.7.0",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"vazirmatn": "^33.0.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@types/node": "^25.6.2",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-plugin-react-compiler": "1.0.0",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"eslint": "^10.3.0",
"eslint-config-next": "16.2.6",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^17.0.4",
"pg": "^8.20.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.8.0",
"prisma": "^7.8.0",
"tailwindcss": "^4.3.0",
"typescript": "^6.0.3"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
]
}