-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "navi",
"version": "0.4.0",
"private": true,
"description": "Yavin Framework",
"repository": {
"type": "git",
"url": "https://github.com/yavin-dev/framework"
},
"license": "MIT",
"author": "yavin@yahooinc.com",
"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": "^12.3.7",
"prettier": "^2.6.0",
"stylelint": "^14.6.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"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"
]
},
"volta": {
"node": "14.19.0",
"npm": "8.5.4"
}
}