forked from anamspe/datesync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.44 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
{
"name": "date_planner",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "nodemon src/server/main.js -w src/server",
"start": "NODE_ENV=production node src/server/main.js",
"build": "vite build",
"db:reset": "node bin/resetdb.js"
},
"dependencies": {
"@auth0/auth0-react": "^2.2.4",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@lottiefiles/react-lottie-player": "^3.5.3",
"@mui/icons-material": "^5.15.2",
"@mui/material": "^5.15.3",
"@mui/styled-engine-sc": "^6.0.0-alpha.10",
"@mui/x-date-pickers": "^6.18.6",
"axios": "^1.6.3",
"bootstrap": "^5.3.2",
"chalk": "^2.4.2",
"dayjs": "^1.11.10",
"express": "^4.18.2",
"express-oauth2-jwt-bearer": "^1.6.0",
"express-openid-connect": "^2.17.1",
"lottie-react": "^2.4.0",
"morgan": "^1.10.0",
"pg": "^8.5.0",
"react": "^17.0.0 || ^18.0.0",
"react-bootstrap": "^2.9.2",
"react-dom": "^17.0.0 || ^18.0.0",
"react-icons": "^4.12.0",
"react-router-dom": "^6.21.1",
"sass": "^1.35.1",
"styled-components": "^6.1.6",
"vite-express": "*"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@vitejs/plugin-react": "^4.2.0",
"dotenv": "^16.3.1",
"nodemon": "^3.0.1",
"vite": "^5.0.2"
}
}