-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.27 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
{
"name": "desy-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run storybook",
"test": "test-storybook",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write --ignore-unknown .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky",
"chromatic": "chromatic"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"msw": {
"workerDirectory": [
"public"
]
},
"dependencies": {
"@fontsource-variable/inter": "^5.0.18",
"lucide-react": "0.368.0",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^2.0.2",
"@storybook/addon-a11y": "^8.3.3",
"@storybook/addon-essentials": "^8.3.3",
"@storybook/addon-interactions": "^8.3.3",
"@storybook/addon-links": "^8.3.3",
"@storybook/addon-themes": "^8.3.3",
"@storybook/blocks": "^8.3.3",
"@storybook/react": "^8.3.3",
"@storybook/react-vite": "^8.3.3",
"@storybook/test": "^8.3.3",
"@storybook/test-runner": "^0.19.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@typescript-eslint/eslint-plugin": "7.12.0",
"@typescript-eslint/parser": "7.12.0",
"@vitejs/plugin-react": "4.3.0",
"autoprefixer": "10.4.19",
"axe-playwright": "2.0.1",
"chromatic": "^11.10.4",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"concurrently": "^9.0.1",
"eslint": "8.57.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.7",
"eslint-plugin-storybook": "^0.9.0",
"eslint-plugin-tailwindcss": "^3.17.4",
"http-server": "^14.1.1",
"husky": "9.0.11",
"lint-staged": "15.2.5",
"msw": "2.3.1",
"msw-storybook-addon": "^2.0.3",
"playwright": "^1.47.2",
"postcss": "8.4.38",
"prettier": "3.3.1",
"prettier-plugin-tailwindcss": "0.5.14",
"storybook": "^8.3.3",
"tailwind-merge": "^2.5.2",
"tailwindcss": "3.4.4",
"typescript": "5.4.5",
"vite": "5.2.12",
"vitest": "1.6.0",
"wait-on": "^8.0.1"
}
}