-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.54 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.54 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "farmestar",
"version": "1.0.0",
"private": true,
"dependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"@google/maps": "^1.0.2",
"@material-ui/core": "^4.6.0",
"@material-ui/icons": "^4.5.1",
"axios": "^0.19.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"concurrently": "^5.0.0",
"cookie-parser": "^1.4.4",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-loader": "^3.0.2",
"express": "^4.17.1",
"firebase": "^7.6.1",
"google-map-react": "^1.1.5",
"google-maps-react": "^2.0.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"mini-css-extract-plugin": "^0.8.0",
"mongodb": "^3.3.3",
"mongoose": "^5.7.7",
"mongoose-unique-validator": "^2.0.3",
"multer": "^1.4.2",
"node-geocoder": "^3.25.0",
"nodemailer": "^6.3.1",
"nodemailer-sendgrid-transport": "^0.2.0",
"onesignal-node": "^2.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"react": "^16.11.0",
"react-async": "^10.0.0",
"react-dom": "^16.11.0",
"react-firebase-file-uploader": "^2.4.3",
"react-iframe": "^1.8.0",
"react-media-hook": "^0.4.4",
"react-redux": "^7.1.3",
"react-responsive-modal": "^4.0.1",
"react-responsive-picture": "^3.2.2",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.3.0",
"react-stripe-elements": "^6.0.1",
"react-swipeable-views": "0.13.3",
"react-time-picker": "^3.9.0",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"redux-devtools": "^3.5.0",
"redux-devtools-extension": "^2.13.8",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"stripe": "^7.14.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"validator": "^12.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-node-externals": "^1.7.2",
"webpack-pwa-manifest": "^4.1.1",
"workbox-webpack-plugin": "^4.3.1",
"worker-loader": "^2.0.0"
},
"scripts": {
"start": "node ./dist/server.js",
"buildDev": "del dist && webpack --mode development --config webpack.server.config.js && webpack --mode development --config webpack.dev.config.js",
"buildProd": "del dist && webpack --mode production --config webpack.server.config.js && webpack --mode production --config webpack.prod.config.js",
"test": "react-scripts test",
"startDev": "react-scripts start",
"heroku-postbuild": "rm -rf dist && webpack --mode production --config webpack.server.config.js && webpack --mode production --config webpack.prod.config.js --verbose",
"build": "rm -rf dist && webpack --mode production --config webpack.server.config.js && webpack --mode production --config webpack.prod.config.js --verbose"
},
"proxy-dev": "http://localhost:8080",
"proxy-prod": "https://farmestar.herokuapp.com/",
"eslintConfig": {
"extends": "react-app"
},
"engines": {
"node": "^12.9.1"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {}
}