-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.35 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": "hopfinder",
"version": "0.0.1",
"description": "brewery / beer finder web app",
"main": "index.js",
"scripts": {
"test": "check-node-version --node '>= 6.7.0' && bin/setup && mocha --compilers js:babel-register tests/**/*.test.js tests/**/*.test.jsx",
"test-watch": "check-node-version --node '>= 6.7.0' && bin/setup && mocha --compilers js:babel-register --watch tests/**/*.test.js tests/**/*.test.jsx",
"build": "check-node-version --node '>= 6.7.0' && bin/setup && webpack",
"build-watch": "check-node-version --node '>= 6.7.0' && bin/setup && webpack -w",
"start": "check-node-version --node '>= 6.7.0' && bin/setup && nodemon server/start.js --ignore ./temp/*",
"seed": "bin/setup && node db/seed.js",
"postinstall": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/milocosmopolitan/hopfinder.git"
},
"keywords": [
"react",
"redux",
"beer",
"brewery",
"google",
"map"
],
"author": "Milo Kang <[email protected]>",
"contributors": [
{
"name": "Daniel Kang",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/milocosmopolitan/hopfinder/issues"
},
"homepage": "https://github.com/milocosmopolitan/hopfinder#readme",
"dependencies": {
"axios": "^0.15.2",
"babel": "^6.5.2",
"babel-core": "^6.18.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.18.0",
"bcrypt": "^0.8.7",
"body-parser": "^1.15.2",
"bootstrap": "^3.3.7",
"bootstrap-social": "^5.0.0",
"chai-enzyme": "^0.5.2",
"chalk": "^1.1.3",
"check-node-version": "^1.1.2",
"classnames": "^2.2.5",
"cookie-session": "^2.0.0-alpha.2",
"cors": "^2.8.1",
"css-loader": "^0.26.1",
"enzyme": "^2.5.1",
"express": "^4.14.0",
"express-jwt": "^5.1.0",
"express-session": "^1.14.2",
"file-loader": "^0.9.0",
"font-awesome": "^4.7.0",
"google-maps-react": "^1.0.19",
"i": "^0.3.5",
"jquery": "^3.1.0",
"jsonwebtoken": "^7.2.1",
"localStorage": "^1.0.3",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"node-sass": "^4.3.0",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"passport-github": "^1.1.0",
"passport-google-oauth": "^1.0.0",
"passport-http-bearer": "^1.0.1",
"passport-jwt": "^2.2.1",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"pg": "^6.1.0",
"pg-native": "^1.10.0",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-cookie": "^1.0.4",
"react-dom": "^15.3.2",
"react-instagram-embed": "^1.1.3",
"react-lazyload": "^2.2.0",
"react-redux": "^4.4.5",
"react-router": "^3.0.0",
"react-swipeable": "^3.8.0",
"react-tweet-embed": "^1.0.3",
"redux": "^3.6.0",
"redux-devtools-extension": "^1.0.0",
"redux-logger": "^2.7.0",
"redux-thunk": "^2.1.0",
"sass-loader": "^4.1.1",
"sequelize": "^3.24.6",
"session-file-store": "^1.0.0",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"store": "^1.3.20",
"style-loader": "^0.13.1",
"webpack": "^1.13.2"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2",
"moment": "^2.17.1",
"supertest": "^2.0.1",
"supertest-as-promised": "^4.0.1",
"volleyball": "^1.4.1"
}
}