-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 790 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 790 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
{
"name": "mycourses",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"bundle": "mkdir deploy && cp -r config app.js public views src bin routes package.json package-lock.json courses-backend.service deploy && rm deploy/config/config.js && mv deploy/config/prod.config.js deploy/config/config.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-session": "^1.17.1",
"google-auth-library": "^6.1.1",
"http-errors": "~1.6.3",
"mariadb": "^2.4.2",
"morgan": "~1.9.1",
"mysql": "^2.18.1",
"pug": "^2.0.0-beta11"
},
"devDependencies": {
"nodemon": "^2.0.4"
}
}