forked from TechTitansGeaux/resolution
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 2.18 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
{
"name": "resolution",
"version": "1.0.0",
"description": "greenfield project",
"main": "index.js",
"scripts": {
"seed": "node ./server/database/seed.js",
"start": "nodemon server/index.js",
"start:prod": "node server/index.js",
"build": "webpack",
"build:dev": "webpack --mode=development --watch",
"serve": "webpack serve"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.9.5",
"axios": "^1.4.0",
"beautify": "^0.0.8",
"bootstrap": "^5.3.0",
"bootstrap-icons": "^1.10.5",
"cookie-session": "^2.0.0",
"crypto": "^1.0.1",
"crypto-browserify": "^3.12.0",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"icons": "^1.0.0",
"jsonwebtoken": "^9.0.1",
"multer": "^1.4.5-lts.1",
"mysql": "^2.18.1",
"mysql2": "^3.5.1",
"nodemon": "^3.0.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-google-button": "^0.7.2",
"react-icons": "^4.11.0",
"react-redux": "^8.1.1",
"react-router": "^6.14.1",
"react-router-dom": "^6.14.1",
"react-scripts": "^5.0.1",
"react-toastify": "^9.1.3",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"sequelize": "^6.32.1",
"socket.io": "^4.7.1",
"socket.io-client": "^4.7.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/node": "^7.22.6",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@webpack-cli/generators": "^3.0.7",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^3.0.0",
"react-error-overlay": "^6.0.9",
"style-loader": "^3.3.3",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}