-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "react-boilerplate",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"license": "MIT",
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"@tailwindcss/forms": "^0.5.1",
"@tailwindcss/typography": "^0.5.2",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.31.1",
"react-redux": "^8.0.1",
"react-router-dom": "^6.3.0",
"redux": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/user-event": "^14.2.0",
"@types/jest": "^27.5.1",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.7",
"babel-jest": "^28.1.0",
"eslint": "^8.16.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"postcss": "^8.4.13",
"postcss-nested": "^5.0.6",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.4",
"vite": "^2.9.9",
"yarn-upgrade-all": "^0.7.1"
}
}