-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "api-ambev",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"test": "",
"start": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ednilsonmcs/api-ambev.git"
},
"author": "ednilsonmcs",
"license": "ISC",
"bugs": {
"url": "https://github.com/ednilsonmcs/api-ambev/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test",
"...": "..."
}
},
"homepage": "https://github.com/ednilsonmcs/api-ambev#readme",
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"mongoose": "^5.9.20",
"path": "^0.12.7",
"prettier": "^2.0.5"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.3.1",
"eslint-config-strongloop": "^2.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}