-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.14 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "unimay",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --open",
"prebuild": "npm run format && npm run lint",
"build": "tsc && vite build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src/ --fix --quiet",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,json,css,scss,md} --ignore-path .gitignore"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@radix-ui/primitive": "^1.0.1",
"@reactuses/core": "^4.0.10",
"@tanstack/react-query": "^5.4.3",
"@tanstack/react-query-devtools": "^5.4.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.0",
"classnames": "^2.3.2",
"dayjs": "^1.11.10",
"react": "^18.2.0",
"react-aria-components": "^1.0.0-beta.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.47.0",
"react-rating-stars-component": "^2.2.0",
"react-router-dom": "^6.8.1",
"react-scripts": "5.0.1",
"react-simple-star-rating": "^5.1.7",
"swiper": "^9.0.5",
"uuid": "^9.0.0",
"vite-plugin-dynamic-import": "^1.4.0",
"vite-plugin-svgr": "^3.2.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.6.0",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.34.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"postcss": "^8.4.24",
"prettier": "^2.8.4",
"sass": "^1.58.3",
"tailwindcss": "^3.3.2",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}