-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.76 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
{
"name": "vite-complete-react-app",
"version": "1.0.0",
"type": "module",
"author": {
"name": "Cristiano Raimondi",
"url": "https://github.com/chrisuser"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.2",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"axios": "^1.7.2",
"eslint-plugin-prettier": "^5.1.3",
"moment": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"redux-persist": "^6.0.0",
"sass": "^1.72.0",
"sass-loader": "^14.1.1"
},
"scripts": {
"start": "vite --port 3000 --open",
"dev": "vite --port 3000 --open",
"build": "vite build",
"serve": "vite preview --open",
"test": "jest",
"test:coverage": "jest --silent --watchAll=false --coverage",
"lint": "eslint --cache .",
"format": "prettier --check ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"defaults",
"not IE 11"
],
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@types/react-redux": "^7.1.33",
"@vitejs/plugin-react": "^4.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"vite": "^5.2.4",
"vite-plugin-env-compatible": "^2.0.1",
"vite-plugin-html": "^3.2.2",
"vitest": "^1.4.0"
},
"homepage": "."
}