-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 996 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
{
"private": true,
"devDependencies": {
"cz-conventional-changelog": "^2.1.0",
"lerna": "^2.11.0",
"husky": "^0.14.3",
"pretty-quick": "^1.6.0",
"meta-npm": "0.0.28"
},
"scripts": {
"test": "echo TEST",
"bootstrap": "lerna bootstrap",
"build": "lerna run --scope @offcourse/* build",
"publish": "lerna publish --conventional-commits --yes",
"release:docs": "lerna run release --scope @offcourse/documentation",
"release:app": "lerna run release --scope @offcourse/app -- offcourse-next",
"release": "npm run release:app && npm run release:docs",
"release:beta": "lerna run release --scope @offcourse/app -- offcourse-beta",
"precommit": "pretty-quick --staged",
"postpublish": "npm run release"
},
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/OffCourse/offcourse-next.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}