-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
97 lines (97 loc) · 2.8 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
{
"name": "nukeapp",
"version": "0.0.1",
"private": true,
"author": {
"name": "saaaaaaaaasha",
"url": "https://github.com/noveogroup-amorgunov"
},
"scripts": {
"test:env": "./.scripts/validateEnv.sh",
"prestart": "npm run test:env",
"preinstall": "npx only-allow pnpm",
"start": "vite",
"build": "npm run test:env && tsc && vite build",
"build:analyze": "ANALYZE=true vite build",
"preview": "vite preview",
"storybook": "storybook dev",
"build:storybook": "storybook build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:types": "tsc --noEmit",
"postinstall": "patch-package"
},
"dependencies": {
"@ebay/nice-modal-react": "1.2.13",
"@hookform/resolvers": "3.9.0",
"@mswjs/data": "github:noveogroup-amorgunov/mswjs-data#feat-persist",
"@reduxjs/toolkit": "2.2.6",
"classnames": "2.5.1",
"jose": "5.6.3",
"rc-dropdown": "4.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.52.1",
"react-redux": "9.1.2",
"react-router-dom": "6.24.1",
"redux-persist": "6.0.0",
"zod": "3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^2.22.3",
"@eslint-react/eslint-plugin": "1.5.26",
"@eslint/compat": "1.1.1",
"@eslint/js": "9.7.0",
"@faker-js/faker": "8.4.1",
"@feature-sliced/eslint-config": "0.1.0-beta.6",
"@storybook/addon-actions": "8.2.3",
"@storybook/addon-essentials": "8.2.3",
"@storybook/addon-links": "8.2.3",
"@storybook/addon-viewport": "8.2.3",
"@storybook/builder-vite": "8.2.3",
"@storybook/react": "8.2.3",
"@storybook/react-vite": "8.2.3",
"@total-typescript/ts-reset": "0.5.1",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-redux": "7.1.33",
"@types/react-router-dom": "5.3.3",
"@vitejs/plugin-react": "4.3.1",
"autoprefixer": "10.4.19",
"dotenv": "16.4.5",
"eslint": "9.7.0",
"eslint-plugin-format": "0.1.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.8",
"eslint-plugin-storybook": "0.8.0",
"globals": "15.8.0",
"lint-staged": "15.2.7",
"msw": "2.3.1",
"patch-package": "8.0.0",
"postcss": "8.4.39",
"postcss-custom-media": "10.0.8",
"postcss-import": "16.1.0",
"postcss-mixins": "10.0.1",
"postcss-nested": "6.0.1",
"rollup-plugin-visualizer": "5.12.0",
"simple-git-hooks": "2.11.1",
"storybook": "8.2.3",
"storybook-addon-react-router-v6": "2.0.15",
"ts-to-zod": "3.9.1",
"typescript": "5.5.3",
"vite": "5.3.3",
"vite-plugin-svgr": "4.2.0",
"vite-tsconfig-paths": "4.3.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"msw": {
"workerDirectory": [
"public"
]
}
}