-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 751 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 751 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
{
"name": "node",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/app.js",
"test": "./node_modules/mocha/bin/mocha",
"test:watch": "./node_modules/mocha/bin/mocha --watch",
"lint": "node_modules/eslint/bin/eslint.js . --fix",
"lint:watch": "node node_modules/eslint-watch/bin/esw -w --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"helmet": "^3.16.0",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.14.1",
"eslint-watch": "^4.0.2",
"mocha": "^6.0.2",
"nodemon": "^1.18.10"
}
}