-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 930 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
{
"private": true,
"scripts": {
"bootstrap": "npx lerna bootstrap",
"publish": "npx lerna run build && npx lerna publish",
"build": "npx lerna run build"
},
"dependencies": {
"lerna": "3.15.0",
"typescript": "^3.4.5"
},
"name": "cli",
"workspaces": [
"packages/**"
],
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@commitlint/config-conventional": "^8.0.0",
"@razors/presets-typescript": "^0.0.3-alpha.5",
"commitlint": "^8.0.0",
"husky": "^3.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}