-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.04 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
{
"name": "35-appjam-web-daruda",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint './**/*.{ts,tsx,js,jsx}'",
"lint:fix": "eslint --fix './**/*.{ts,tsx,js,jsx}'",
"lint:styled": "stylelint './src/**/*.{ts,tsx,js,jsx}' --fix",
"postinstall": "husky install",
"lint-front": "lint-staged",
"preview": "vite preview",
"svgr": "npx @svgr/cli --out-dir src/assets/svgs --typescript --ignore-existing public/svgs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/babel-plugin": "^11.13.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@react-three/drei": "^9.121.2",
"@react-three/fiber": "^8.17.12",
"@tanstack/react-query": "^5.64.0",
"@tanstack/react-query-devtools": "^5.64.0",
"@types/three": "^0.172.0",
"axios": "^1.7.9",
"lottie-react": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-intersection-observer": "^9.15.1",
"react-lottie": "^1.2.10",
"react-lottie-player": "^2.1.0",
"react-player": "^2.16.0",
"react-router-dom": "^7.1.1",
"storybook-addon-theme-provider": "^0.2.8",
"stylelint-order": "^6.0.4",
"three": "^0.172.0"
},
"devDependencies": {
"@chromatic-com/storybook": "3.2.3",
"@eslint/js": "^9.17.0",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-interactions": "8.4.7",
"@storybook/addon-onboarding": "8.4.7",
"@storybook/blocks": "8.4.7",
"@storybook/react": "8.4.7",
"@storybook/react-vite": "8.4.7",
"@storybook/test": "8.4.7",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@svgr/cli": "^8.1.0",
"@svgr/webpack": "^8.1.0",
"@types/node": "^22.10.5",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-lottie": "^1.2.10",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitejs/plugin-react": "^4.3.4",
"chromatic": "^11.22.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"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.16",
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"postcss-styled-syntax": "^0.7.0",
"postcss-syntax": "^0.36.2",
"prettier": "^3.4.2",
"storybook": "8.4.7",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"stylelint --fix"
]
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}