-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
92 lines (92 loc) · 3.1 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm start\" \"npm run storybook\"",
"start": "vite",
"start:docker": "docker-compose -f docker-compose.dev.yml --env-file=.env.dev up --build",
"storybook": "storybook dev -p 6007",
"prettier": "prettier --check src/**/*.{ts,tsx,css}",
"prettier:format": "prettier --write \"src/**/*.{ts,tsx,scss,css,json}\"",
"lint": "eslint src/",
"build": "tsc -b && vite build",
"preview": "vite preview",
"build-storybook": "storybook build",
"server": "json-server -w server/db.json --routes server/routes.json -p 3001",
"test": "vitest"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@pbe/react-yandex-maps": "^1.2.4",
"@reduxjs/toolkit": "^1.9.5",
"@vitejs/plugin-react": "^4.3.1",
"classnames": "^2.3.2",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"joi": "^17.13.3",
"nanoid": "^4.0.2",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-datepicker": "^4.11.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.5",
"react-markdown": "^9.0.0",
"react-redux": "^8.0.7",
"react-router-dom": "^6.11.1",
"react-spinners": "^0.13.8",
"react-text-mask": "^5.5.0",
"remark-gfm": "^4.0.0",
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-essentials": "^8.2.1",
"@storybook/addon-interactions": "^8.2.1",
"@storybook/addon-links": "^8.2.1",
"@storybook/addon-onboarding": "^8.2.1",
"@storybook/blocks": "^8.2.1",
"@storybook/react": "^8.2.1",
"@storybook/react-vite": "^8.2.1",
"@storybook/test": "^8.2.1",
"@testing-library/dom": "^9.3.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/date-fns": "^2.6.0",
"@types/jest": "^27.5.2",
"@types/node": "^18.13.0",
"@types/react": "^18.2.6",
"@types/react-datepicker": "^4.11.2",
"@types/react-dom": "^18.2.4",
"@types/react-text-mask": "^5.4.14",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"babel-plugin-named-exports-order": "^0.0.2",
"concurrently": "^8.2.0",
"eslint": "^8.40.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^24.1.1",
"json-server": "^0.17.3",
"prettier": "2.8.8",
"react-hook-form": "^7.51.5",
"react-text-mask": "^5.5.0",
"storybook": "^8.2.1",
"storybook-addon-remix-react-router": "^3.0.0",
"typescript": "^4.9.5",
"vite": "^5.3.1",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.4"
}
}