-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.26 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "salvando-labs",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^2.9.10",
"@mui/icons-material": "^5.15.13",
"@mui/material": "^5.16.6",
"@mui/styled-engine-sc": "^6.0.0-alpha.18",
"axios": "^0.27.2",
"date-fns": "^2.29.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.41.0",
"react-icons": "^4.10.1",
"react-loading-skeleton": "^3.2.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.26.0",
"react-toastify": "^9.1.1",
"swiper": "^11.0.7",
"yup": "^0.32.11"
},
"devDependencies": {
"@mdi/font": "^7.3.67",
"@rushstack/eslint-patch": "^1.3.3",
"@tailwindcss/typography": "^0.5.8",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^13.0.0",
"@testing-library/user-event": "^13.2.1",
"@types/jest": "^28.1.5",
"@types/node": "^18.11.18",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@types/react-hooks-helper": "^1.6.4",
"@types/react-select": "^5.0.1",
"@types/styled-components": "^5.1.25",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-react-swc": "^3.8.1",
"autoprefixer": "^10.4.7",
"cypress": "^13.3.1",
"eslint": "^8.49.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jsdom": "^26.0.0",
"postcss": "^8.4.14",
"prettier": "^2.7.1",
"sass": "^1.69.7",
"start-server-and-test": "^2.0.1",
"tailwindcss": "^3.1.6",
"typescript": "^4.4.2",
"vite": "^6.2.2",
"vite-plugin-commonjs": "^0.10.4",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.0.9"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}