forked from novuhq/novu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.71 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
{
"name": "notifirehq",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "lerna run test",
"build": "lerna run build",
"publish": "lerna publish from-package",
"version": "lerna version --conventional-commits --no-push",
"prepare": "husky install",
"commit": "cz",
"generate:provider": "npx hygen provider new"
},
"devDependencies": {
"hygen": "^6.1.0",
"@commitlint/cli": "13.2.1",
"@commitlint/config-angular": "^13.2.0",
"@types/jest": "^27.0.2",
"@types/node": "16.7.2",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"commitizen": "^4.2.4",
"cspell": "^4.1.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^3.0.2",
"eslint-plugin-import": "^2.22.0",
"husky": "^7.0.2",
"jest": "^27.1.0",
"lerna": "^3.22.1",
"lint-staged": "^11.2.3",
"prettier": "^2.1.1",
"ts-jest": "^27.0.5",
"ts-node": "^9.0.0",
"typescript": "^4.4.3"
},
"workspaces": [
"packages/*",
"providers/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -c .commitlintrc.json -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"packages/**/*.{ts,json}": [
"prettier --ignore-path ./.prettierignore --write"
],
"providers/**/*.{ts,json}": [
"prettier --ignore-path ./.prettierignore --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}