forked from baloise/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 3.35 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 3.35 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
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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "root",
"private": true,
"publishConfig": {
"access": "public"
},
"homepage": "https://design.baloise.dev",
"author": {
"name": "Gery Hirschfeld",
"email": "gerhard.hirschfeld@baloise.ch",
"url": "https://github.com/hirsch88"
},
"scripts": {
"preinstall": "npx npm-force-resolutions",
"setup": "npm install && npm run build && npm run bootstrap",
"postinstall": "npm run bootstrap && npm run docs:install && node .scripts/copy.script.js",
"bootstrap": "lerna bootstrap",
"serve": "npm run lib:serve",
"build": "npm run icons:build && npm run lib:build && npm run table:build && npm run vue:build && npm run angular:build && npm run react:build && npm run testing:build",
"test": "npm run lib:test && npm run vue:test",
"release": "lerna publish --yes --force-publish --conventional-commits --exact",
"canary": "lerna publish --canary --preid beta --dist-tag beta --yes --force-publish --exact",
"update:lock": "lerna exec -- npm install --package-lock-only",
"lib:build": "node .scripts/banner.js lib:build && npm --prefix packages/components run build",
"lib:serve": "node .scripts/banner.js lib:serve && npm --prefix packages/components run serve",
"lib:test": "node .scripts/banner.js lib:test && cd packages/components && npm run test",
"table:build": "node .scripts/banner.js table:build && npm --prefix packages/components-table run build",
"vue:build": "node .scripts/banner.js vue:build && npm --prefix packages/components-vue run build",
"vue:test": "node .scripts/banner.js vue:test && npm --prefix packages/components-vue run test",
"angular:build": "node .scripts/banner.js angular:build && npm --prefix packages/components-angular run build",
"react:build": "node .scripts/banner.js react:build && npm --prefix packages/components-react run build",
"testing:test": "node .scripts/banner.js testing:run && npm --prefix packages/testing run ci",
"testing:serve": "node .scripts/banner.js testing:serve && npm --prefix packages/testing run serve",
"testing:server": "node .scripts/banner.js testing:server && npm --prefix packages/testing run ci:server",
"testing:build": "node .scripts/banner.js testing:build && npm --prefix packages/testing run build",
"icons:build": "node .scripts/banner.js icons:build && npm --prefix packages/icons run build",
"docs:install": "cd docs && npm install",
"docs:serve": "npm --prefix docs run serve",
"docs:setup": "npm --prefix packages/fonts run docs && npm --prefix packages/icons run docs && npm --prefix packages/components run docs && npm --prefix packages/testing run docs && npm --prefix docs run setup",
"docs:build": "npm run docs:setup && npm --prefix docs run build",
"docs:publish": "npm run docs:install && npm run docs:build",
"sandbox:build": "node .scripts/banner.js sandbox:build"
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"chalk": "^4.1.2",
"figlet": "^1.5.2",
"glob": "^7.1.7",
"husky": "^7.0.1",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"resolutions": {
"tar": ">=4.4.18"
},
"dependencies": {}
}