-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 2.37 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
53
54
55
56
57
58
{
"name": "root",
"private": true,
"bugs": {
"url": "https://github.com/baloise/web-app-utils/issues"
},
"homepage": "https://github.com/baloise/web-app-utils",
"contributors": [
"Gery Hirschfeld <[email protected]> (https://github.com/hirsch88)",
"Yannick Holzenkamp <[email protected]> (https://github.com/yannickholzenkamp)",
"Petar Nobilo <[email protected]> (https://github.com/nobilo)",
"lazaki (https://github.com/lazaki)"
],
"scripts": {
"==================== INSTALLATION / SETUP ====================": "",
"prepare": "husky install",
"postinstall": "npm run bootstrap",
"bootstrap": "lerna bootstrap",
"update:lock": "lerna exec -- npm install --package-lock-only",
"update:registry": "lerna run update:registry && sed -i -e \"s#nexus.balgroupit.com/repository/npm#registry.npmjs.org#g\" package-lock.json\n",
"precommit": "lint-staged --allow-empty",
"==================== FORMATTER / LINTER ======================": "",
"format:check": "prettier --check ./packages",
"format": "prettier --write ./packages",
"lint:check": "eslint --ext .tsx,.ts packages/",
"lint": "eslint --ext .tsx,.ts packages/ --fix",
"==================== BUILD ===================================": "",
"build": "lerna run build",
"==================== TEST ====================================": "",
"test": "lerna run test",
"==================== DOCUMENTATION ===========================": "",
"docs": "node ./.build/docs.js",
"==================== RELEASE =================================": "",
"release": "lerna publish --conventional-commits --exact --force-publish --yes",
"release:canary": "lerna publish prepatch --canary --preid beta --dist-tag beta --exact --force-publish --yes --no-changelog"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"chalk": "^4.1.2",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"figlet": "^1.5.2",
"glob": "^7.1.7",
"husky": "^7.0.0",
"lerna": "^6.0.3",
"lint-staged": "^12.1.3",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"resolutions": {
"tar": ">=4.4.18"
}
}