forked from vicharanashala/spurti
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 791 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 791 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
{
"name": "analysis-summership",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"seed": "node server/scripts/seed.js",
"rebuild": "node server/scripts/rebuild.js",
"add-students": "node server/scripts/addStudents.js",
"sync-students": "node server/scripts/syncStudents.js",
"ingest-session": "node server/scripts/ingestSession.js",
"split-22-may": "node server/scripts/split22MaySessions.js",
"setup": "npm install && npm --prefix client install && npm run rebuild && npm run build",
"build": "npm --prefix client run build",
"start": "node server/server.js",
"dev": "node server/server.js"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^17.4.2",
"express": "^4.19.2",
"mongoose": "^8.8.4"
}
}