-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"build:dev": "tsc && vite build --minify false",
"preview": "vite preview",
"typecheck": "tsc -p tsconfig.app.json --noEmit",
"format": "prettier --check . --ignore-unknown",
"format:fix": "prettier --write . --ignore-unknown",
"lint": "tsc --noEmit && eslint . --ext=.ts,.tsx --quiet && stylelint ./src/**/*.scss --quiet",
"lint:fix": "eslint . --ext=.ts,.tsx --fix && stylelint ./src/**/*.scss --fix",
"generate:icons": "node ./scripts/generateIcons.js",
"generate:api": "bash ./scripts/generateApi.sh",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@reduxjs/toolkit": "2.2.6",
"axios": "^1.3.1",
"clsx": "2.1.1",
"date-fns": "^3.6.0",
"dayjs": "^1.11.12",
"dotenv": "^16.4.5",
"es-toolkit": "^1.13.1",
"react": "18.3.1",
"react-day-picker": "^9.0.8",
"react-dom": "18.3.1",
"react-hook-form": "^7.52.1",
"react-redux": "9.1.2",
"react-router-dom": "6.25.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@storybook/addon-essentials": "^8.2.6",
"@storybook/addon-interactions": "^8.2.6",
"@storybook/addon-links": "^8.2.6",
"@storybook/blocks": "^8.2.6",
"@storybook/react": "^8.2.6",
"@storybook/react-vite": "^8.2.6",
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-window-infinite-loader": "^1.0.9",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"@vitejs/plugin-react-swc": "3.7.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-refresh": "0.4.9",
"eslint-plugin-storybook": "^0.8.0",
"husky": "8.0.3",
"nano-staged": "0.8.0",
"postcss": "8.4.39",
"postcss-scss": "4.0.9",
"prettier": "3.3.3",
"sass": "1.77.8",
"storybook": "^8.2.6",
"stylelint": "16.7.0",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-config-standard-scss": "13.1.0",
"stylelint-declaration-block-no-ignored-properties": "2.8.0",
"stylelint-declaration-strict-value": "^1.10.4",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.4.1",
"stylelint-semantic-groups": "1.2.1",
"stylelint-use-logical-spec": "5.0.1",
"typescript": "5.5.4",
"vite": "5.3.4",
"vite-plugin-checker": "0.7.2",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "4.3.2"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}