This repository has been archived by the owner on May 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
87 lines (87 loc) · 2.46 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "node-bloodboiler",
"version": "2.2.1",
"description": "A API built on top of expressJS",
"main": "app.js",
"author": "Lucas A Pelegrino <[email protected]>",
"license": "MIT",
"repository": "https://github.com/lucas-a-pelegrino/node-bloodboiler.git",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "NODE_ENV=production node app.js",
"start:staging": "NODE_ENV=staging node app.js",
"start:dev": "NODE_ENV=development nodemon app.js",
"start:debug": "NODE_ENV=development node --inspect-brk=5858 app.js",
"docker:prod": "TAG=$npm_package_version docker-compose -f docker-compose.yml -f docker-compose.prod.yml up -d",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up -d",
"docker:test": "docker-compose -f docker-compose.yml -f docker-compose.test.yml up -d",
"test": "jest -i",
"test:coverage": "jest -i && codecov",
"commit": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "commitiquette"
}
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"http-status-codes": "^2.1.4",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongoose": "^5.11.14",
"morgan": "^1.10.0",
"nodemailer": "^6.4.17",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3",
"xss-clean": "^0.1.1",
"yup": "^0.32.8"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"codecov": "^3.8.1",
"commitiquette": "^1.0.9",
"commitizen": "^4.2.3",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-security": "^1.4.0",
"faker": "^5.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"node-mocks-http": "^1.10.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"supertest": "^6.1.3"
},
"keywords": [
"node",
"javascript",
"express",
"boilerplate",
"mongoose",
"jsonwebtoken",
"RESTful",
"rest",
"api",
"jest"
]
}