forked from yavin-dev/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "navi",
"version": "0.4.0",
"private": true,
"description": "Yavin Framework",
"repository": {
"type": "git",
"url": "https://github.com/yavin-dev/framework"
},
"license": "MIT",
"author": "[email protected]",
"scripts": {
"build-ui": "lerna run build --scope navi-app --stream",
"start": "cd packages/webservice && ./gradlew bootRun",
"postinstall": "lerna bootstrap --concurrency 2",
"test": "lerna run test --stream",
"lint": "lerna run lint --stream",
"lint:ws:fix": "cd packages/webservice && ./gradlew formatKotlin -d && true",
"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"
},
"devDependencies": {
"husky": "^4.2.5",
"lerna": "^4.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"stylelint": "^13.12.0",
"stylelint-config-sass-guidelines": "^8.0.0",
"validate-commit": "^3.4.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "validate-commit-msg -p eslint"
}
},
"lint-staged": {
"*.{yaml,md,json,js,ts}": [
"prettier -w --config prettier.config.js"
],
"*.scss": [
"stylelint --fix"
],
"packages/webservice/**/*": [
"npm run lint:ws:fix"
]
}
}