-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 969 Bytes
/
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
{
"name": "devops",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:garywald/devops.git",
"author": "Geraud <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "cross-env PORT=8080 node app.js",
"start": "node app.js",
"commit": "git cz"
},
"dependencies": {
"express": "^4.17.1",
"lorem-ipsum": "^2.0.4"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"commitizen": "^4.2.4",
"cross-env": "^7.0.3",
"cz-emoji": "^1.3.1",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.13",
"prettier": "^2.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-emoji"
}
}
}