-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
80 lines (80 loc) · 2.45 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
{
"name": "rental-evaluator",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --mode development",
"dev1": "webpack serve --hot --open",
"dev": "concurrently \"cross-env NODE_ENV=development webpack server --open --hot --inline --content-base ./\" \"nodemon ./server/server.js\" \"--history-api-fallback\"",
"build": "webpack --config webpack.config.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aramay/rental-evaluator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aramay/rental-evaluator/issues"
},
"homepage": "https://github.com/aramay/rental-evaluator#readme",
"dependencies": {
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@reduxjs/toolkit": "^1.6.0",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"bootstrap": "^4.6.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"d3": "^6.0.0",
"dotenv": "^10.0.0",
"express": "^4.16.3",
"mongoose": "^5.12.14",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.7",
"pg": "^8.5.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-map-gl": "^6.1.16",
"react-map-gl-geocoder": "^2.1.6",
"react-redux": "^7.2.4",
"react-router-dom": "^5.2.0",
"redux-persist": "^6.0.0",
"unirest": "^0.6.0"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"concurrently": "^5.0.0",
"cross-env": "^6.0.3",
"css-loader": "^5.2.6",
"eslint": "^7.28.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"get-routes": "^2.1.4",
"html-webpack-plugin": "^5.3.1",
"mongoose": "^5.12.14",
"node-fetch": "^2.6.1",
"style-loader": "^2.0.0",
"svg-url-loader": "^7.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
}
}