-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 972 Bytes
/
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
{
"name": "algorithm-visualizer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env NodeEnv=Production node server/index.js",
"dev": "cross-env NodeEnv=Development nodemon server/index.js",
"bootstrap": "npm install && npm run front-end-build",
"front-end-build": "cd algorithm-visualizer && npm install && npm run build",
"front-end-build-dev": "cd algorithm-visualizer && npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.4.5",
"cloudinary": "^1.26.2",
"cookie-parser": "^1.4.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"mongoose": "^5.12.15",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"socket.io": "^4.1.2"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}