forked from billycrapediem/dandy-hacks-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.93 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
{
"name": "no-procrastination",
"version": "1.0.0",
"description": "to do list app",
"scripts": {
"hotloader": "webpack serve --config ./webpack.config.js --mode development --port 5050",
"start": "nodemon --exec ts-node server/server.ts",
"build": "webpack --config ./webpack.config.js --mode production"
},
"author": "Boyi Zhang",
"license": "MIT",
"devDependencies": {
"@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",
"dotenv": "^16.0.3",
"eslint": "^8.32.0",
"eslint-plugin-react": "^7.32.1",
"file-loader": "^6.2.0",
"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",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@react-oauth/google": "^0.6.0",
"@syncfusion/ej2-react-schedule": "^23.1.40",
"@types/express": "^4.17.10",
"@types/express-session": "^1.17.3",
"@types/mongoose": "^5.10.3",
"@types/morgan": "^1.9.2",
"@types/react-router-dom": "^5.3.3",
"bootstrap": "^5.3.2",
"core-js": "^3.27.2",
"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": "^18.2.0",
"react-bootstrap": "^2.9.0",
"react-datepicker": "^4.20.0",
"react-datetime": "^3.2.0",
"react-dom": "^18.2.0",
"react-pro-sidebar": "^1.1.0-alpha.1",
"react-router-dom": "^6.7.0",
"socket.io": "^4.5.4",
"socket.io-client": "^3.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9"
}
}