forked from axelgar/basic-backend-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 864 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 864 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
28
29
30
31
32
33
34
35
36
37
{
"name": "api-auth",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start-dev": "nodemon ./bin/www"
},
"engines": {
"node": "v12.6.0",
"npm": "6.9.0"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "~1.18.2",
"connect-mongo": "^2.0.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"express-session": "^1.15.6",
"mongoose": "^5.3.0",
"morgan": "~1.9.0",
"node-gyp": "^3.8.0",
"serve-favicon": "~2.4.5"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"nodemon": "^1.18.6"
}
}