-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.64 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
{
"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/reach__router": "^1.3.6",
"@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",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.14",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@reach/router": "^1.3.4",
"@react-oauth/google": "^0.6.0",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.10",
"@types/express-session": "^1.17.3",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.2",
"@types/react": "^18.0.27",
"dotenv": "^8.2.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": "^16.x",
"react-dom": "^16.x",
"socket.io": "^4.5.4",
"socket.io-client": "^3.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9"
}
}