-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.28 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
76
77
78
79
80
{
"name": "studypal",
"private": true,
"version": "0.7.1",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "jest"
},
"dependencies": {
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.1",
"@fullcalendar/core": "^6.1.8",
"@fullcalendar/daygrid": "^6.1.8",
"@fullcalendar/interaction": "^6.1.8",
"@fullcalendar/list": "^6.1.8",
"@fullcalendar/react": "^6.1.8",
"@fullcalendar/timegrid": "^6.1.8",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.13.2",
"@mui/styled-engine-sc": "^5.12.0",
"@supabase/supabase-js": "^2.23.0",
"bootstrap": "^5.2.3",
"date-fns": "^2.30.0",
"mime-db": "^1.52.0",
"react": "^18.2.0",
"react-big-calendar": "^1.8.1",
"react-bootstrap": "^2.7.4",
"react-circular-progressbar": "^2.1.0",
"react-countdown-circle-timer": "^3.2.1",
"react-datepicker": "^4.14.1",
"react-dom": "^18.2.0",
"react-ga4": "^2.1.0",
"react-helmet-async": "^1.3.0",
"react-router-dom": "^6.11.2",
"react-slider": "^2.0.5",
"styled-components": "^5.3.11",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"babel-jest": "^29.5.0",
"css-loader": "^6.8.1",
"cypress": "^12.17.2",
"esbuild": "^0.18.8",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jsdom": "^22.1.0",
"style-loader": "^3.3.3",
"vite": "^4.3.2"
},
"jest": {
"verbose": true,
"testEnvironment": "jsdom",
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testEnvironmentOptions": {
"customExportConditions": []
},
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "identity-obj-proxy"
}
}
}