-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (74 loc) · 2.15 KB
/
package.json
File metadata and controls
75 lines (74 loc) · 2.15 KB
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
{
"name": "y",
"version": "1.0.0",
"description": "Website for sharing meals",
"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",
"server-prod": "node ./src/backend/server",
"dev": "nodemon app.js"
},
"author": "Benjamin Hughes",
"license": "MIT",
"proxy": "http://localhost:5000",
"dependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.1",
"@types/xml": "^1.0.3",
"app-root-path": "^2.1.0",
"babel-loader": "^8.2.4",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"css-loader": "^5.0.0",
"debug": "~2.6.0",
"dotenv": "^4.0.0",
"dotenv-webpack": "^7.1.0",
"express": "^4.18.2",
"express-brute": "^1.0.1",
"express-form-data": "^2.0.1",
"html-webpack-plugin": "^4.3.0",
"knex": "^2.4.2",
"multer": "^1.3.0",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"path": "^0.12.7",
"pg": "^8.11.3",
"react": "^16.8.2",
"react-dom": "^16.8.2",
"react-router-dom": "^5.3.4",
"sass": "^1.27.1",
"sass-loader": "^10.0.4",
"serve-favicon": "2.4.5",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.82.1",
"webpack-cli": "^4.9.2"
},
"devDependencies": {
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"concurrently": "^7.0.0",
"file-loader": "^6.2.0",
"install-peers": "^1.0.3",
"node-sass": "^8.0.0",
"nodemon": "^2.0.22",
"sequelize-cli": "^6.4.1",
"webpack-dev-server": "^4.7.4"
},
"main": "webpack.config.js",
"repository": {
"type": "git",
"url": "git+https://github.com/dmytriigithub/meal-sharing.git"
},
"keywords": [],
"bugs": {
"url": "https://github.com/dmytriigithub/meal-sharing/issues"
},
"homepage": "https://github.com/dmytriigithub/meal-sharing#readme"
}