-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 KB
/
package.json
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
{
"name": "timetable-visualizer",
"version": "1.0.0",
"description": "BITS Timetable Visualizer API",
"main": "index.js",
"scripts": {
"setup_env": "npm install && npm install --prefix frontend-desktop",
"test": "echo \"Error: no test specified\" && exit 1",
"parse-timetable": "node timetable-parser/index.js",
"start": "node .",
"server": "NODE_ENV=development nodemon . --config nodemon.json",
"client:desktop": "npm run serve --prefix frontend-desktop",
"client": "npm run client:desktop",
"build:client:desktop": "npm run build --prefix frontend-desktop",
"prod_setup": "npm run build:client:desktop",
"start:dev": "concurrently \"npm run server\" \"npm run client\"",
"start:prod": "NODE_ENV=production npm start"
},
"keywords": [
"bits-pilani",
"nil1729",
"timetable"
],
"author": "Nilanjan Deb, Shaurya",
"license": "MIT",
"devDependencies": {
"concurrently": "^7.6.0",
"dotenv": "^10.0.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.12"
},
"dependencies": {
"@sendgrid/mail": "^7.6.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"jshint": "^2.13.3",
"lodash": "^4.17.21",
"mongoose": "^5.13.3",
"node-device-detector": "^1.3.8",
"nodemailer": "^6.7.2",
"puppeteer": "^19.5.0",
"randomstring": "^1.2.1",
"uuid": "^8.3.2"
}
}