forked from cs4241-21a/final_project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 887 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
34
35
36
37
38
39
{
"name": "music-library",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"clean": "rm dist/bundle.js",
"snow_start": "snowpack dev",
"build": "snowpack build",
"start": "nodemon server.js",
"dev": "nodemon --inspect server.js"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "latest",
"connect-ensure-login": "^0.1.1",
"ejs": "^2.7.1",
"express": "^4.17.1",
"express-session": "^1.17.2",
"mongodb": "^4.1.3",
"morgan": "^1.10.0",
"nodemon": "^2.0.12",
"passport": "^0.4.1",
"passport-google-oauth2": "^0.2.0",
"passport-local": "^1.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"request": "^2.88.2"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"snowpack": "^3.8.8"
}
}