-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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": "react-project",
"private": true,
"version": "1.2.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write .",
"prepare": "husky install",
"cypress:open": "cypress open"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.2",
"framer-motion": "^9.0.1",
"i18next": "^22.4.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.1.4",
"react-redux": "^8.0.5",
"react-router-dom": "^6.8.0"
},
"devDependencies": {
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react-swc": "^3.1.0",
"autoprefixer": "^10.4.13",
"cypress": "^12.5.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.5",
"vite": "^4.1.1"
},
"lint-staged": {
"*.{js,ts,jsx,tsx,json}": [
"prettier --write"
]
},
"engines": {
"node": "16.x",
"npm": ">=7.0.0",
"yarn": ">=1.19.0 < 2.0.0"
}
}