forked from danieldfc/rocketflix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "rocketflix",
"version": "1.0.0",
"private": true,
"repository": "[email protected]:danieldfc/rocketflix.git",
"author": "Daniel Felizardo <[email protected]>",
"license": "MIT",
"contributors": [
{
"name": "Leonardo Scapinello",
"url": "https://github.com/leonardoscapinello",
"email": "[email protected]"
},
{
"name": "Daniel Nora",
"url": "https://github.com/danielnora",
"email": "[email protected]"
}
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": {
"packages": [
"backend",
"frontend"
]
},
"devDependencies": {
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"commitizen": "^4.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"prettier": "^1.18.2"
}
}