forked from yavin-dev/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.03 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.03 KB
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
{
"name": "navi",
"version": "0.2.0",
"description": "Navi Project",
"author": "team-navi@googlegroups.com",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/yahoo/yavin"
},
"scripts": {
"build-ui": "lerna run build --scope navi-app --stream",
"start": "cd packages/webservice && ./gradlew bootRun",
"postinstall": "lerna bootstrap --concurrency 2 --ci",
"test": "lerna run test --stream",
"lerna-ci-publish": "lerna publish --canary --exact preminor --force-publish=* --yes",
"lerna-ci-publish-beta": "lerna publish --canary --preid beta --dist-tag beta --exact preminor --force-publish=* --yes"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && pushd packages/webservice && ./gradlew lintKotlin && popd",
"commit-msg": "validate-commit-msg -p eslint"
}
},
"devDependencies": {
"husky": "^4.2.5",
"lerna": "^3.22.1",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"validate-commit": "^3.4.0"
}
}