-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.34 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.34 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "password-keeper-api",
"version": "1.4.4",
"description": "API for password-keeper",
"main": "bin/www/index.js",
"scripts": {
"test": "jest --coverage",
"dev": "nodemon bin/www/index.js",
"generate": "node bin/utils/generateKey.js",
"start": "NODE_ENV=production node bin/www/index.js",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"author": "André L. Adriano",
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"debug": "^4.1.1",
"dotenv": "^6.2.0",
"entropy-string": "^4.1.0",
"express": "^4.16.4",
"express-graphql": "^0.7.1",
"graphql": "^14.2.1",
"graphql-tools": "^4.0.4",
"jsonwebtoken": "^8.5.1",
"merge-graphql-schemas": "^1.5.8",
"mongoose": "^5.5.2",
"promise-memoize": "^1.2.1",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2",
"husky": "^1.3.1",
"jest": "^24.7.1",
"jest-cli": "^24.7.1",
"jest-environment-node": "^24.7.1",
"mongodb-memory-server": "^4.2.2",
"supertest": "^4.0.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run fix -- --cache",
"pre-push": "npm run lint && npx jest"
}
}
}