-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
{
"name": "node-express-realworld-conduit",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "DEBUG=app,app:* nodemon ./bin/www",
"create-env": "printenv > .env",
"test": "NODE_ENV=test newman run ./tests/api-tests.postman.json -e ./tests/env-api-tests.postman.json",
"lint": "eslint"
},
"dependencies": {
"bcrypt": "^3.0.6",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.1.0",
"errorhandler": "^1.5.1",
"express": "~4.16.1",
"express-jwt": "^5.3.1",
"helmet": "^3.21.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.5",
"mongoose-unique-validator": "^2.0.3",
"morgan": "~1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"slug": "^1.1.0",
"swagger-ui-express": "^4.0.7",
"uuid": "^3.3.3"
},
"devDependencies": {
"eslint": "^6.3.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"newman": "^4.5.4",
"nodemon": "^1.19.2"
}
}