-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.31 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
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"main": "main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"electron:start": "electron .",
"electron:build": "next build && electron-builder"
},
"build": {
"appId": "com.dreamtimetable.iit",
"productName": "DreamTimetable IIT",
"directories": {
"output": "dist-electron"
},
"win": {
"target": ["nsis"]
},
"files": [
"out/**/*",
"main.js",
"preload.js",
"package.json"
]
},
"dependencies": {
"better-sqlite3": "^12.10.0",
"face-api.js": "^0.22.2",
"jspdf": "^4.2.1",
"next": "16.2.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"recharts": "^3.8.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron": "^42.3.0",
"electron-builder": "^26.8.1",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"lucide-react": "^1.17.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
}
}