-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (47 loc) · 1.15 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
{
"name": "backend-challenge-nia",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:santos-rj/backend-challenge-nia.git",
"author": "Rafael Santos <raf535@outlook.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"commit": "git-cz"
},
"keywords": [],
"dependencies": {
"axios": "^0.21.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mariadb": "^2.5.2",
"nodemon": "^2.0.6",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"sequelize": "^6.3.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.3",
"lint-staged": "^10.2.2",
"sequelize-cli": "^6.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}