-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "mental-health-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack -w --config webpack.config.js",
"start": "nodemon server/index.js",
"seed": "node server/db/seed.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@eslint/js": "^9.2.0",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"file-loader": "^6.2.0",
"globals": "^15.2.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"lorem-ipsum": "^2.0.8",
"nodemon": "^3.1.0",
"style-loader": "^4.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/roboto": "^5.0.13",
"@mui/icons-material": "^5.15.17",
"@mui/material": "^5.15.17",
"axios": "^1.6.8",
"body-parser": "^1.20.2",
"chart.js": "^4.4.2",
"cron": "^3.1.7",
"dayjs": "^1.11.11",
"express": "^4.19.2",
"express-session": "^1.18.0",
"mysql2": "^3.9.7",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-material-ui-carousel": "^3.4.2",
"react-router": "^6.23.0",
"react-router-dom": "^6.23.0",
"request-ip": "^3.3.0",
"sequelize": "^6.37.3"
}
}