-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.11 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
81
82
{
"name": "prime-solo-project",
"version": "1.0.0",
"private": true,
"engines": {
"node": "20.x"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.622.0",
"@aws-sdk/s3-request-presigner": "^3.622.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.11",
"@mui/joy": "^5.0.0-beta.29",
"@mui/material": "^5.15.11",
"@mui/styled-engine-sc": "^6.0.0-alpha.17",
"@mui/x-data-grid": "^6.19.6",
"axios": "^1.6.2",
"bcryptjs": "^2.4.3",
"connect-pg-simple": "^9.0.1",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.0.0",
"crypto": "^1.0.1",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-force-https": "^1.0.0",
"express-rate-limit": "^7.3.1",
"express-session": "^1.18.0",
"formik": "^2.4.6",
"heic-convert": "^2.1.0",
"helmet": "^7.1.0",
"luxon": "^3.4.4",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"pg": "^8.12.0",
"react": "^18.2.0",
"react-audio-voice-recorder": "^2.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-redux": "^7.2.6",
"react-router-dom": "^5.3.4",
"redux": "^4.1.2",
"redux-logger": "^3.0.6",
"redux-saga": "^1.1.3",
"styled-components": "^6.1.8",
"sweetalert2": "^11.10.6"
},
"scripts": {
"start": "node server/server.js",
"client": "vite",
"server": "nodemon --watch server server/server.js",
"build": "vite build",
"test": "vitest",
"dev-host": "vite --host"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"nodemon": "^2.0.22",
"vite": "^5.0.7",
"vite-plugin-mkcert": "^1.17.4",
"vitest": "^1.0.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"heroku-run-build-script": true
}