forked from dantame/interview-authentication-service
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "interview-authentication-service",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/nodemon index.js",
"test": "./node_modules/.bin/mocha test/",
"test:watch": "npm test -- --watch",
"lint": "./node_modules/.bin/eslint src/ test/ && npm run prettier",
"prettier": "./node_modules/.bin/prettier --list-different \"./{src,test}/**/*.js\"",
"prettify": "./node_modules/.bin/prettier --write \"./{src,test}/**/*.js\""
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run lint"
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.3.0",
"husky": "^1.0.0-rc.13",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"prettier": "1.14.2",
"supertest": "^3.1.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.3.0",
"prom-client": "^11.1.1"
}
}