generated from yandex-praktikum/client-server-template-with-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.34 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
{
"name": "client",
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && yarn build:ssr && vite build --config vite.config.ts",
"build:ssr": "tsc && vite build --config ssr.config.ts",
"preview": "vite preview --config vite.config.ts",
"lint": "eslint .",
"format": "prettier --write .",
"test": "jest ./"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.14",
"@reduxjs/toolkit": "^1.9.7",
"@uidotdev/usehooks": "^2.4.1",
"dotenv": "^16.0.2",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-redux": "^8.1.3",
"react-router-dom": "^6.17.0",
"sass": "^1.69.4"
},
"devDependencies": {
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.8",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"eslint": "^8.23.0",
"jest": "^28",
"jest-environment-jsdom": "^29.0.1",
"lefthook": "^1.3.9",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2",
"vite": "^3.0.7"
},
"license": "MIT"
}