-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.86 KB
/
package.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "nodejs-rest-api",
"version": "1.0.0",
"description": "Node.js RESTful API project",
"author": "Fernando Domínguez <dominguez.fernando@gmail.com> (https://fernandominguez.es)",
"repository": {
"type": "git",
"url": "git+https://github.com/fernandominguez/nodejs-rest-api-boilerplate.git"
},
"keywords": [
"nodejs",
"rest",
"api",
"boilerplate"
],
"bugs": {
"url": "https://github.com/fernandominguez/nodejs-rest-api-boilerplate/issues"
},
"homepage": "https://github.com/fernandominguez/nodejs-rest-api-boilerplate#readme",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "/home/node/app/node_modules/.bin/nodemon index.js",
"debug": "nodemon --inspect=0.0.0.0:9229 index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write '**/*.{js,json}'",
"test": "mocha --timeout 30000",
"test:integration": "npm test"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint",
"git add"
]
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "1.18.2",
"compression": "1.7.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv-flow": "3.2.0",
"express": "^4.16.3",
"fs": "^0.0.1-security",
"helmet": "^4.4.1",
"http": "0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.14",
"nodemon": "^2.0.7",
"puppeteer": "^5.5.0",
"showdown": "^1.9.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "4.3.0",
"eslint": "7.19.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "5.0.9",
"lint-staged": "10.5.4",
"mocha": "^8.2.1",
"prettier": "2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}