This repository has been archived by the owner on Apr 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
63 lines (63 loc) · 1.82 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": "meal-sharing",
"version": "1.0.0",
"description": "Website for sharing meals",
"engines": {
"node": "^20.11.1"
},
"scripts": {
"build": "webpack --mode production",
"start": "npm run build && node ./src/backend/server",
"client": "webpack-dev-server --mode development --devtool inline-source-map --hot",
"server": "nodemon ./src/backend/server",
"dev": "concurrently \"npm run server\" \"npm run client\""
},
"author": "Benjamin Hughes",
"license": "MIT",
"proxy": "http://localhost:5000",
"type": "module",
"dependencies": {
"@babel/core": "^7.24.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-react": "^7.23.3",
"@types/xml": "^1.0.11",
"app-root-path": "^2.2.1",
"babel-loader": "^8.3.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.20.2",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"css-loader": "^5.2.7",
"debug": "~2.6.0",
"dotenv": "^16.4.5",
"dotenv-webpack": "^7.1.1",
"express": "^4.18.3",
"express-brute": "^1.0.1",
"express-form-data": "^2.0.23",
"html-webpack-plugin": "^4.5.2",
"knex": "^0.21.21",
"multer": "^1.4.4",
"mysql2": "^2.3.3",
"path": "^0.12.7",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.4",
"sass": "^1.71.1",
"sass-loader": "^10.5.2",
"serve-favicon": "^2.5.0",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.90.3",
"webpack-cli": "^4.10.0"
},
"devDependencies": {
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"concurrently": "^7.6.0",
"install-peers": "^1.0.4",
"nodemon": "^2.0.22",
"sequelize-cli": "^6.6.2",
"webpack-dev-server": "^4.15.1"
}
}