-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
172 lines (172 loc) · 6.78 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"packages/output-targets/*"
],
"description": "The Baloise Design-System is an open source project for styling awesome web applications that follow the Baloise corporate styling guidelines.",
"repository": {
"type": "git",
"url": "https://github.com/baloise-incubator/design-system.git"
},
"bugs": {
"url": "https://github.com/baloise-incubator/design-system/issues"
},
"homepage": "https://baloise-design.vercel.app",
"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)",
"Laurent Tauber <[email protected]> (https://github.com/Gagne87)",
"Mladen Planinicic <[email protected]> (https://github.com/mladenplaninicic)",
"Andreas Stebler <[email protected]> (https://github.com/Clastzoo)"
],
"keywords": [
"design-system",
"web-components",
"stenciljs"
],
"license": "Apache-2.0",
"scripts": {
"==================== START ====================": "================================",
"start": "npm run dev",
"serve": "npm run build && npm --prefix packages/components run serve",
"dev": "npm run build && npm --prefix packages/components run dev",
"==================== BUILD ====================": "================================",
"build": "turbo run build && node .build/docs-copy.js && node .build/version.js",
"build:force": "turbo run build --force && node .build/docs-copy.js",
"release": "npm run build:force && changeset publish",
"==================== TEST =====================": "================================",
"test": "turbo run test",
"e2e": "npm --prefix packages/components run e2e",
"==================== RELEASE ==================": "================================",
"changeset": "changeset",
"==================== DOCUMENTATION ============": "================================",
"docs": "npm run build:force && npm --prefix packages/components run docs",
"docs:serve": "http-server storybook -p 8080",
"storybook": "npm run docs",
"==================== INSTALLATION / SETUP =====": "================================",
"prepare": "husky install",
"precommit": "lint-staged --allow-empty",
"cy:install": "npm --prefix packages/components run cy:install",
"cy:build": "turbo run build --force --filter=@baloise/design-system-tokens --filter=@baloise/design-system-fonts --filter=@baloise/design-system-icons --filter=@baloise/design-system-css --filter=@baloise/design-system-output-target-vue && npm --prefix packages/components run cy:build && npm --prefix packages/testing run build",
"registry": "bash .build/registry",
"==================== 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",
"spell": "cspell \"packages/components/src/**/*.{md,mdx,tsx}\" --no-progress"
},
"devDependencies": {
"@angular/cli": "~13.3.10",
"@angular/common": "~13.3.12",
"@angular/compiler": "~13.3.12",
"@angular/compiler-cli": "~13.3.12",
"@angular/core": "~13.3.12",
"@angular/forms": "~13.3.12",
"@angular/platform-browser": "~13.3.12",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "~17.3.0",
"@commitlint/config-conventional": "~17.3.0",
"@rollup/plugin-commonjs": "~22.0.1",
"@rollup/plugin-node-resolve": "~13.3.0",
"@rollup/plugin-typescript": "^8.3.4",
"@stencil/core": "^2.20.0",
"@stencil/sass": "^2.0.1",
"@storybook/addon-a11y": "^6.5.16",
"@storybook/addon-docs": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/addons": "^6.5.16",
"@storybook/theming": "^6.5.16",
"@storybook/vue3": "^6.5.16",
"@types/big.js": "~6.1.6",
"@types/chai": "~4.3.4",
"@types/google.maps": "^3.52.2",
"@types/jquery": "~3.5.6",
"@types/lodash.camelcase": "~4.3.6",
"@types/lodash.capitalize": "~4.2.6",
"@types/lodash.isempty": "~4.4.6",
"@types/lodash.isfunction": "^3.0.7",
"@types/lodash.isnan": "~3.0.6",
"@types/lodash.isnil": "~4.0.6",
"@types/lodash.isstring": "~4.0.6",
"@types/lodash.padstart": "~4.6.6",
"@types/lodash.round": "~4.0.6",
"@types/lodash.upperfirst": "~4.3.6",
"@types/node": "~18.11.17",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "~5.47.0",
"@typescript-eslint/parser": "~5.47.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vitest/ui": "^0.28.1",
"ag-grid-community": "~26.0.0",
"archiver": "~5.3.0",
"autoprefixer": "^10.4.13",
"axe-core": "~4.6.1",
"change-case": "~4.1.2",
"clean-css-cli": "^5.6.2",
"codesandbox": "^2.2.3",
"compression": "^1.7.4",
"concurrently": "~7.6.0",
"conventional-changelog-conventionalcommits": "~5.0.0",
"copyfiles": "^2.4.1",
"cspell": "~6.18.0",
"cypress": "~12.2.0",
"cypress-axe": "~1.2.0",
"cypress-file-upload": "~5.0.8",
"cypress-visual-regression": "~2.0.1",
"eslint": "~8.30.0",
"eslint-config-prettier": "~8.5.0",
"eslint-plugin-prettier": "~4.2.1",
"express": "~4.18.2",
"fast-glob": "~3.2.12",
"fs-extra": "~10.1.0",
"glob": "~8.0.3",
"hirsch-storybook-docs-toc": "1.8.1",
"http-server": "~14.1.1",
"husky": "~8.0.2",
"js-beautify": "~1.14.7",
"jsdom": "^21.1.0",
"lint-staged": "~13.1.0",
"lodash.camelcase": "~4.3.0",
"lodash.isboolean": "^3.0.3",
"lodash.isdate": "^4.0.1",
"lodash.isequal": "^4.5.0",
"lodash.upperfirst": "~4.3.1",
"minireset.css": "~0.0.7",
"ng-packagr": "~13.3.1",
"normalize.css": "~8.0.1",
"param-case": "~3.0.4",
"pascal-case": "~3.1.2",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"prettier": "~2.8.1",
"prompts": "~2.4.2",
"react": "~17.0.2",
"react-dom": "~17.0.2",
"react-syntax-highlighter": "~15.5.0",
"replace-in-file": "^6.3.5",
"rimraf": "~3.0.2",
"rollup": "~2.77.2",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "~2.2.4",
"rollup-plugin-sass": "^1.12.17",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.57.1",
"serve-index": "~1.9.1",
"svgo": "~2.8.0",
"tslib": "^2.4.1",
"turbo": "1.6.3",
"typescript": "~4.6.4",
"vite": "^3.2.5",
"vitest": "^0.26.3",
"vue": "^3.2.45",
"workbox-build": "~4.3.1",
"zone.js": "~0.11.4"
}
}