-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·65 lines (65 loc) · 1.83 KB
/
package.json
File metadata and controls
executable file
·65 lines (65 loc) · 1.83 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
{
"name": "react-node-starter",
"version": "0.2.0",
"engines": {
"node": "10.x",
"npm": "6.x"
},
"description": "an example for deploying a React + NodeJS app to Heroku",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"postinstall": "webpack -p --config webpack.prod.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@google/maps": "^0.5.5",
"@material-ui/core": "^4.1.1",
"@material-ui/icons": "^4.2.1",
"babel-core": "^6.26.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"basic-auth": "^2.0.1",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"css-loader": "^2.1.0",
"dotenv": "^6.2.0",
"exif-js": "^2.3.0",
"express": "^4.16.4",
"file-loader": "^3.0.1",
"file-saver": "^2.0.1",
"google-maps-react": "^2.0.2",
"googleapis": "^40.0.0",
"js-yaml": "^3.13.1",
"ml5": "^0.3.1",
"mobile-detect": "^1.4.3",
"node-sass": "^4.11.0",
"react": "^16.8.2",
"react-beautiful-dnd": "^10.0.4",
"react-bootstrap": "^1.0.0-beta.9",
"react-dom": "^16.8.2",
"react-dropzone": "^10.1.5",
"react-geocode": "^0.1.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.5",
"whatwg-fetch": "^3.0.0",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-prettier": "^3.0.1",
"resolve-url-loader": "^3.0.1",
"svg-react-loader": "^0.4.6",
"url-loader": "^1.1.2",
"webpack-cli": "^3.2.3",
"webpack-dev-middleware": "^3.6.0",
"webpack-dev-server": "^3.2.0",
"webpack-hot-middleware": "^2.24.3"
}
}