-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.49 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
{
"name": "monorepo-typescript-library-starter",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/SatadruBhattacharjee/monorepo-typescript-library-starter"
},
"scripts": {
"clean": "lerna run clean --stream --parallel",
"prebuild": "lerna run prebuild --stream --parallel",
"lint": "lerna run lint --stream --parallel",
"build": "lerna run build --stream --parallel",
"test": "lerna run test --stream --parallel",
"test:watch": "lerna run test:watch --stream --parallel",
"test:prod": "lerna run test:prod --stream --parallel",
"deploy-docs": "ts-node tools/gh-pages-publish",
"docs": "rimraf docs && typedoc --tsconfig './tsconfig.typedoc.json'",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"semantic-release": "lerna-semantic-release pre && lerna-semantic-release post && lerna-semantic-release perform",
"commit": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit",
"pre-push": "npm test"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-lerna-changelog"
},
"validate-commit-msg": {
"helpMessage": "Commit message violates the rules defined for this project. Please, execute `npm run commit` to generate a correct commit message with `commitizen`"
}
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/jest": "^24.0.16",
"colors": "^1.3.3",
"coveralls": "^3.0.5",
"cross-env": "^5.2.0",
"cz-lerna-changelog": "^2.0.2",
"git-cz": "^3.2.1",
"husky": "^3.0.2",
"jest": "^24.8.0",
"jest-config": "^24.8.0",
"lerna": "^3.16.4",
"lerna-semantic-release": "^9.1.0",
"lint-staged": "^9.2.1",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.18.2",
"prompt": "^1.0.0",
"rimraf": "^2.6.3",
"rollup": "^1.17.0",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.22.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typedoc": "^0.15.0",
"typedoc-plugin-lerna-packages": "^0.1.6",
"typescript": "^3.5.3",
"validate-commit-msg": "^2.14.0"
}
}