-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.78 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.78 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
{
"name": "cloudgram-webapp",
"author": {
"name": "Vega7",
"email": "ankuverindustries@gmail.com",
"telegram": "https://t.me/Vega781",
"url": "https://vega781.github.io/Portfolio/"
},
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"docker:remove-old": "powershell -Command \"docker ps -aq --filter 'ancestor=cloudgram-web' | ForEach-Object { docker rm -f $_ }; docker images cloudgram-web -q | ForEach-Object { docker rmi -f $_ }\"",
"docker:run-compose": "docker compose up --build -d",
"docker:down-compose": "docker compose down",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.1.0",
"@mui/material": "^7.1.0",
"@reduxjs/toolkit": "^2.6.1",
"@tanstack/react-query": "^5.69.0",
"@types/node": "^22.15.2",
"axios": "^1.9.0",
"gsap": "^3.12.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-js-loader": "^0.1.3",
"react-redux": "^9.2.0",
"react-router-dom": "^7.1.5",
"redux": "^5.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@eslint/js": "^9.26.0",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-onboarding": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/experimental-addon-test": "^8.6.12",
"@storybook/react": "^8.6.12",
"@storybook/react-vite": "^8.6.12",
"@storybook/test": "^8.6.12",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-redux": "^7.1.34",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^3.1.3",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^9.26.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-storybook": "^0.12.0",
"globals": "^15.15.0",
"lint-staged": "^16.0.0",
"playwright": "^1.52.0",
"react-refresh": "^0.17.0",
"sass-embedded": "^1.83.4",
"storybook": "^8.6.12",
"typescript": "5.7",
"typescript-eslint": "^8.32.0",
"vite": "^6.0.5",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^3.1.3"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}