-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
184 lines (184 loc) · 5.8 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
173
174
175
176
177
178
179
180
181
182
183
184
{
"name": "root",
"private": true,
"packageManager": "pnpm@9.12.3",
"engines": {
"node": ">=18.x",
"pnpm": ">=9.x"
},
"type": "module",
"os": [
"darwin",
"linux"
],
"scripts": {
"size": "turbo run size",
"typecheck": "turbo run typecheck",
"build": "turbo run build",
"build:examples": "turbo run build --filter '@examples/*' ",
"build:storybook": "STORYBOOK_ENVIRONMENT=production storybook build",
"build:storybook:stats": "pnpm turbo build:storybook -- --webpack-stats-json",
"test:unit": "turbo run test:unit",
"test:unit:coverage": "turbo run test:unit:coverage",
"check:deps": "npx depcheck . --skip-missing=true --ignores='bin,eslint,vite,jest,husky,@commitlint/*,@babel/*,babel-*'",
"commit": "npx git-cz -a --disable-emoji",
"start": "STORYBOOK_ENVIRONMENT=development storybook dev -p 6006",
"start:production": "STORYBOOK_ENVIRONMENT=production storybook dev -p 6006",
"format": "biome format --write .",
"format:ci": "biome ci .",
"lint:fix": "pnpm run lint --fix",
"lint": "eslint --report-unused-disable-directives --cache .",
"prepare": "husky",
"tokens:update": "node ./scripts/figma-synchronise-tokens.mjs && pnpm run format packages/themes/src/themes/console",
"icons:update": "tsx ./scripts/generate-icons-file.ts && biome format --write packages/icons",
"release": "pnpm build && pnpm changeset publish",
"svg": "svgo --pretty --multipass",
"svg:all": "pnpm run svg -r -f .",
"illustrations:update": "BUCKET_NAME=ultraviolet BUCKET_REGION=fr-par node utils/illustrations/uploadIllustrations.js && pnpm format packages/illustrations/src/",
"lintpublish": "turbo run lintpublish"
},
"lint-staged": {
"*.(j|t|mj)s?(x)": [
"eslint --fix",
"biome format --write ."
],
"*.svg": [
"pnpm run svg"
],
"*.y?(a)ml": [
"pnpm dlx prettier --write '**/*.{yml,yaml}'"
],
".md?(x)": [
"pnpm dlx prettier --write '**/*.{md,mdx}'"
],
"pnpm-lock.yaml, package.json, **/pnpm-lock.yaml, **/package.json": [
"pnpm exec manypkg check"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH"
]
},
"pnpm": {
"overrides": {
"vite": "$vite"
},
"peerDependencyRules": {
"allowedVersions": {
"react": "18",
"react-dom": "18"
}
}
},
"dependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.25.9",
"@babel/plugin-transform-runtime": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-react": "7.25.9",
"@babel/preset-typescript": "7.26.0",
"@babel/runtime": "7.26.0",
"@biomejs/biome": "1.9.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@emotion/babel-plugin": "11.12.0",
"@emotion/cache": "11.13.1",
"@emotion/eslint-plugin": "11.12.0",
"@emotion/jest": "11.13.0",
"@emotion/react": "11.13.3",
"@emotion/styled": "11.13.0",
"@eslint/compat": "1.2.2",
"@eslint/eslintrc": "3.1.0",
"@manypkg/cli": "0.22.0",
"@scaleway/eslint-config-react": "4.0.9",
"@scaleway/tsconfig": "1.1.1",
"@size-limit/file": "11.1.6",
"@size-limit/preset-big-lib": "11.1.6",
"@storybook/addon-a11y": "8.4.2",
"@storybook/addon-docs": "8.4.2",
"@storybook/addon-essentials": "8.4.2",
"@storybook/addon-interactions": "8.4.2",
"@storybook/addon-links": "8.4.2",
"@storybook/addon-mdx-gfm": "8.4.2",
"@storybook/addon-themes": "8.4.2",
"@storybook/blocks": "8.4.2",
"@storybook/builder-vite": "8.4.2",
"@storybook/components": "8.4.2",
"@storybook/core-events": "8.4.2",
"@storybook/manager-api": "8.4.2",
"@storybook/mdx2-csf": "1.1.0",
"@storybook/react": "8.4.2",
"@storybook/react-vite": "8.4.2",
"@storybook/theming": "8.4.2",
"@svgr/rollup": "8.1.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-datepicker": "6.2.0",
"@types/react-dom": "18.3.1",
"@types/zxcvbn": "4.4.5",
"@ultraviolet/themes": "workspace:*",
"@ultraviolet/ui": "workspace:*",
"@vitejs/plugin-react": "4.3.3",
"@vitest/coverage-istanbul": "2.1.5",
"@vitest/ui": "2.1.5",
"babel-loader": "9.2.1",
"babel-plugin-annotate-pure-calls": "0.4.0",
"babel-plugin-named-exports-order": "0.0.2",
"browserslist": "4.24.2",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"date-fns": "4.1.0",
"emoji-toolkit": "9.0.1",
"esbuild-plugin-browserslist": "0.15.0",
"eslint": "9.14.0",
"eslint-plugin-testing-library": "6.4.0",
"expect": "29.7.0",
"file-loader": "6.2.0",
"globals": "15.12.0",
"happy-dom": "15.11.6",
"http-server": "14.1.1",
"husky": "9.1.6",
"identity-obj-proxy": "3.0.0",
"jest-axe": "9.0.0",
"lint-staged": "15.2.10",
"postcss": "8.4.49",
"publint": "0.2.12",
"react": "18.3.1",
"react-dom": "18.3.1",
"read-pkg": "9.0.1",
"regenerator-runtime": "0.14.1",
"remark-gfm": "4.0.0",
"require-from-string": "2.0.2",
"rollup-plugin-postcss": "4.0.2",
"shx": "0.3.4",
"size-limit": "11.1.6",
"storybook": "8.4.2",
"svgo": "3.3.2",
"timekeeper": "2.3.1",
"tsx": "4.19.2",
"turbo": "2.2.3",
"typescript": "5.6.3",
"vite": "5.4.11",
"vitest": "2.1.5",
"vitest-canvas-mock": "0.3.3",
"vitest-localstorage-mock": "0.1.2",
"zxcvbn": "4.4.2"
}
}