-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 2.12 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
{
"name": "decorator-next",
"private": "true",
"version": "0.0.1",
"description": "",
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "bun run --cwd packages/client test && bun run --cwd packages/server test",
"dev": "concurrently \"bun run --cwd packages/client dev\" \"bun run --cwd packages/server dev\"",
"build": "bun run --cwd packages/icons build && bun run --cwd packages/client build && bun run --cwd packages/server build && bun run copy-assets",
"copy-assets": "mkdir -p packages/server/public && copyfiles -u 3 packages/client/dist/assets/**/* packages/server/public/",
"prepare": "husky",
"benchmarking": "./benchmarking/run",
"clean": "rm -rf node_modules packages/**/node_modules bun.lockb packages/**/bun.lockb",
"playwright": "playwright test"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"packages/*"
],
"dependencies": {
"clsx": "2.1.1",
"zod": "3.23.8"
},
"devDependencies": {
"@axe-core/playwright": "4.9.1",
"@playwright/test": "1.44.0",
"@storybook/addon-essentials": "8.1.11",
"@storybook/addon-viewport": "8.1.11",
"@storybook/blocks": "8.1.11",
"@storybook/html": "8.1.11",
"@storybook/html-vite": "8.1.11",
"@types/amplitude-js": "8.16.5",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"concurrently": "8.2.2",
"copyfiles": "2.4.1",
"esbuild-minify-templates": "0.11.0",
"eslint": "8.57.0",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"storybook": "8.1.11",
"typescript-plugin-css-modules": "5.1.0",
"vite": "5.1.4",
"postcss-import-sync2": "1.2.0"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,html,yaml,md}": [
"prettier --write"
]
},
"prettier": {}
}