-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.5 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "skeleton",
"version": "1.0.0",
"description": "Typescript starter template for weblab students",
"scripts": {
"hotloader": "webpack serve --config ./webpack.config.js --mode development --port 5050",
"start": "nodemon --watch 'server/**/*.ts' --exec ts-node server/server.ts",
"build": "webpack --config ./webpack.config.js --mode production"
},
"author": "johanc",
"license": "MIT",
"devDependencies": {
"@types/formidable": "^3.4.5",
"@types/react-dom": "^18.0.10",
"@types/webpack": "^5.28.0",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"css-loader": "^5.0.1",
"eslint": "^8.32.0",
"eslint-plugin-react": "^7.32.1",
"prettier": "^3.2.4",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"typescript": "^5.3.3",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.7",
"@babel/plugin-transform-class-properties": "^7.23.3",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fullcalendar/core": "^6.1.10",
"@fullcalendar/daygrid": "^6.1.10",
"@fullcalendar/react": "^6.1.10",
"@fullcalendar/timegrid": "^6.1.10",
"@mui/icons-material": "^5.15.6",
"@mui/joy": "^5.0.0-beta.24",
"@mui/material": "^5.15.6",
"@mui/x-date-pickers": "^6.19.2",
"@react-oauth/google": "^0.6.0",
"@types/express": "^4.17.10",
"@types/express-session": "^1.17.3",
"@types/mailparser": "^3.4.4",
"@types/morgan": "^1.9.2",
"axios": "^1.6.7",
"babel-loader": "^9.1.3",
"core-js": "^3.35.1",
"dayjs": "^1.11.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-handler": "^1.2.0",
"express-session": "^1.17.1",
"formidable": "^3.5.1",
"fullcalendar": "^6.1.10",
"google-auth-library": "^6.1.4",
"http-status-codes": "^2.3.0",
"jwt-decode": "^3.1.2",
"mailparser": "^3.6.6",
"mongoose": "^5.11.11",
"morgan": "^1.10.0",
"mui-file-input": "^4.0.3",
"nodemon": "^2.0.7",
"openid-client": "^5.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router": "^6.21.3",
"react-router-dom": "^6.21.3",
"react-time-ago": "^7.2.1",
"socket.io": "^4.5.4",
"socket.io-client": "^3.0.5",
"ts-node": "^10.9.1"
}
}