-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.32 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.32 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
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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"dev-mock": "vite --mode dev-mock",
"build": "tsc -b && vite build",
"lint:tsc": "npx tsc --build --noEmit",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint \"**/*.{css,scss}\"",
"lint": "npm run lint:eslint && npm run lint:stylelint && npm run lint:tsc",
"preview": "vite preview --port 3000",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"chromatic": "npx chromatic --project-token=chpt_a6dc39eba6488b2",
"i18n:transform": "tsx scripts/i18nTransform.ts"
},
"dependencies": {
"@tanstack/eslint-plugin-query": "^5.91.4",
"@tanstack/react-query": "^5.90.20",
"axios": "^1.13.4",
"clsx": "^2.1.1",
"framer-motion": "^12.29.3",
"i18next": "^25.8.0",
"i18next-browser-languagedetector": "^8.2.0",
"i18next-http-backend": "^3.0.2",
"pako": "^2.1.0",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-i18next": "^16.5.4",
"react-icons": "^5.5.0",
"react-router-dom": "^7.13.0",
"vite-bundle-visualizer": "^1.2.1"
},
"devDependencies": {
"@babel/generator": "^7.28.3",
"@babel/parser": "^7.28.4",
"@babel/traverse": "^7.28.4",
"@babel/types": "^7.28.4",
"@chromatic-com/storybook": "^3.2.2",
"@eslint/js": "^9.15.0",
"@storybook/addon-essentials": "^8.6.15",
"@storybook/addon-interactions": "^8.6.15",
"@storybook/addon-onboarding": "^8.6.15",
"@storybook/blocks": "^8.6.15",
"@storybook/react": "^8.6.15",
"@storybook/react-vite": "^8.6.15",
"@storybook/test": "^8.6.15",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/babel__traverse": "^7.28.0",
"@types/glob": "^8.1.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.0",
"@types/pako": "^2.0.3",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.1.3",
"autoprefixer": "^10.4.20",
"chromatic": "^11.20.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-storybook": "^0.11.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"glob": "^13.0.0",
"globals": "^17.3.0",
"jsdom": "^28.0.0",
"msw": "^2.12.7",
"msw-storybook-addon": "^2.0.4",
"postcss": "^8.4.49",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"storybook": "^8.6.15",
"stylelint": "^16.11.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-tailwindcss": "^0.0.7",
"tailwindcss": "^3.4.16",
"tsx": "^4.21.0",
"typescript": "5.7",
"typescript-eslint": "^8.15.0",
"vite": "^6.4.1",
"vitest": "^4.0.18"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}