-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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": "ca-anmial-lovers",
"version": "0.1.0",
"private": true,
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@types/pg": "^8.11.6",
"nodemon": "^3.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@mui/icons-material": "^5.15.18",
"@mui/joy": "^5.0.0-beta.36",
"@mui/material": "^5.15.18",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"pg": "^8.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-multi-carousel": "^2.8.5",
"react-router-dom": "^6.23.1",
"typescript": "^5.2.2",
"vite": "^5.3.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start:frontend": "vite",
"start:backend": "cd backend && tsx src/index.ts"
},
"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"
]
},
"type": "module"
}