-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.78 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.78 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
{
"name": "tragon",
"version": "0.1.0",
"description": "App for collecting and displaying crowdsourced information about street food vendors",
"main": "index.js",
"engines": {
"node": "8.11.x",
"npm": "5.8.0"
},
"scripts": {
"dev": "webpack --config webpack.config.js --watch --mode development",
"dev-start": "nodemon server/index.js",
"prod": "NODE_ENV=production node server/index.js",
"postinstall": "webpack --config webpack.config.prod.js --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IntrepidParagon/Tragon.git"
},
"keywords": [
"food",
"crowdsource",
"react"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/IntrepidParagon/Tragon/issues"
},
"homepage": "https://github.com/IntrepidParagon/Tragon#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.11",
"postcss-loader": "^2.1.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"dependencies": {
"body-parser": "^1.18.2",
"compression": "^1.7.2",
"express": "^4.16.3",
"firebase": "^4.12.1",
"firebase-admin": "^5.12.0",
"material-ui": "^1.0.0-beta.38",
"material-ui-search-bar": "^0.4.1",
"mongoose": "^5.0.11",
"npm": "^5.8.0",
"npm-latest-version": "^1.0.2",
"react": "^16.2.0",
"react-autosuggest": "^9.3.4",
"react-dom": "^16.2.0",
"react-google-maps": "^9.4.5",
"react-router-dom": "^4.2.2",
"react-select": "^1.2.1",
"react-star-rating-component": "^1.4.1",
"recompose": "^0.26.0"
}
}