-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
88 lines (88 loc) · 2.55 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
{
"name": "birdwatch",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server -d --hot --config webpack.config.js --watch",
"build": "webpack --watch",
"production": "NODE_ENV=production webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/djdelgado/birdwatch.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/djdelgado/birdwatch/issues"
},
"homepage": "https://github.com/djdelgado/birdwatch#readme",
"dependencies": {
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.0",
"bcrypt": "^1.0.2",
"bcryptjs": "^2.3.0",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"express": "^4.15.3",
"express-session": "^1.15.3",
"google-maps-react": "^1.0.19",
"jquery": "^3.2.1",
"lodash": "^4.17.4",
"material-ui": "^0.18.4",
"moment": "^2.18.1",
"moment-timezone": "^0.5.13",
"native-base": "^2.1.5",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "^6.4.0",
"pg-promise": "^6.2.0",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-geosuggest": "^2.3.4",
"react-google-maps": "^6.3.0",
"react-places-autocomplete": "^5.3.1",
"react-redirect": "^1.0.0",
"react-responsive": "^1.3.0",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-scroll-up": "^1.3.1",
"react-tap-event-plugin": "^2.0.1",
"request": "^2.81.0",
"request-promise": "^4.2.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-watch": "^2.0.6",
"css-hot-loader": "^1.2.0",
"css-loader": "^0.28.4",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.1",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"image-webpack-loader": "^3.3.1",
"node-sass": "^4.5.3",
"optimize-css-assets-webpack-plugin": "^2.0.0",
"postcss-loader": "^2.0.6",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
}
}