-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
{
"name": "slangz",
"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/node": "^20.11.10",
"@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",
"ts-node": "^10.9.2",
"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": {
"@react-oauth/google": "^0.6.0",
"@types/express": "^4.17.10",
"@types/express-session": "^1.17.3",
"@types/morgan": "^1.9.2",
"dotenv": "^8.6.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"google-auth-library": "^6.1.4",
"jwt-decode": "^3.1.2",
"mongoose": "^5.11.11",
"morgan": "^1.10.0",
"nodemon": "^2.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-router": "^6.21.3",
"react-router-dom": "^6.21.3",
"socket.io": "^4.5.4",
"socket.io-client": "^3.0.5"
}
}