-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.5 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.5 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
{
"name": "react-practise",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"devServer": "json-server --watch db.json --port 3004",
"build": "vite build",
"lint": "eslint src --ext js,jsx,ts,tsx --report-unused-disable-directives --max-warnings 0",
"test": "SASS_SILENCE_DEPRECATIONS=legacy-js-api vitest",
"test:run": "vitest run",
"preview": "vite preview",
"prepare": "husky install",
"sass": "node -e \"process.env.SASS_SILENCE_DEPRECATIONS='legacy-js-api'; require('sass');\""
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.19"
},
"dependencies": {
"@reduxjs/toolkit": "^2.6.1",
"axios": "^1.8.4",
"json-server": "^0.17.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.4.0",
"redux": "^5.0.1",
"sass": "^1.86.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"husky": "^8.0.0",
"jsdom": "^21.1.1",
"prettier": "^2.8.8",
"vite": "^6.2.3",
"vitest": "^0.30.1"
}
}