-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 727 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 727 Bytes
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
{
"name": "adaptive-study-planner",
"version": "2.0.0",
"scripts": {
"server": "node backend.js",
"client": "cd client && npm start",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"build": "cd client && npm run build",
"start": "node backend.js"
},
"dependencies": {
"axios": "^1.12.2",
"bcrypt": "^6.0.0",
"cheerio": "^1.1.2",
"cors": "^2.8.6",
"crypto-js": "^4.2.0",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"express-session": "^1.18.2",
"ical-generator": "^8.0.0",
"multer": "^1.4.5-lts.2",
"mysql2": "^3.16.0",
"node-ical": "^0.18.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"concurrently": "^8.0.0"
}
}