-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
113 lines (113 loc) · 4.08 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
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
109
110
111
112
113
{
"name": "agroeasy",
"version": "1.2.17",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --mode development --config webpack.base.config.js --open --hot --history-api-fallback",
"prebuild": "rm -rf dist/*",
"build": "webpack --mode production --config webpack.prod.config.js && webpack --mode production --config webpack.server.config.js --progress",
"build-dev": "webpack --mode development --config webpack.server.config.js && webpack --mode development --config webpack.base.config.js",
"start": "node dist/server.js",
"nodemon": "nodemon dist/server.js",
"watch:backend": "webpack --watch --mode development --config webpack.server.config.js",
"watch:frontend": "webpack --watch --mode development --config webpack.base.config.js",
"prestart-all": "npm run build-dev",
"start-all": "npm-run-all -p nodemon watch:backend watch:frontend",
"lint": "eslint src db server.js routes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enye-Cohort-1/Agroeasy.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Enye-Cohort-1/Agroeasy/issues"
},
"homepage": "https://github.com/Enye-Cohort-1/Agroeasy#readme",
"dependencies": {
"antd": "^3.10.7",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"cookies-js": "^1.2.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"emailjs": "^2.2.0",
"express": "^4.16.3",
"express-static-gzip": "^1.1.3",
"http-status-codes": "^1.3.0",
"lodash.pick": "^4.4.0",
"mongoose": "^5.2.17",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-favicon": "0.0.14",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.5",
"redux": "^4.0.1",
"redux-saga": "^0.16.2",
"shallow-equal": "^1.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.1.2",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@babel/runtime": "^7.1.2",
"babel-loader": "^8.0.4",
"babel-plugin-import": "^1.11.0",
"brotli-webpack-plugin": "^1.0.0",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^1.0.0",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"imagemin-gifsicle": "^6.0.1",
"imagemin-jpegtran": "^6.0.0",
"imagemin-optipng": "^6.0.0",
"imagemin-svgo": "^7.0.0",
"imagemin-webpack": "^4.0.1",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.4",
"nodemon": "^1.18.9",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "6.4.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.1.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
}
}