forked from bread-n-butter/eventify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.64 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
{
"name": "eventify",
"version": "1.0.0",
"description": "Eventify",
"main": "index.js",
"scripts": {
"test": "mocha tests/ --compilers js:babel-core/register --recursive",
"test:watch": "npm test -- --watch",
"start": "node ./server/server.js",
"postinstall": "webpack --config ./webpack-production.config.js --progress --colors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bread-n-butter/eventify.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bread-n-butter/eventify/issues"
},
"homepage": "https://github.com/bread-n-butter/eventify#readme",
"dependencies": {
"aws-sdk": "^2.2.33",
"axios": "^0.9.0",
"babel": "^6.3.26",
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-1": "^6.3.13",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.14.2",
"bookshelf": "^0.9.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.1",
"deep-freeze": "0.0.1",
"es6-promise": "^3.0.2",
"eslint-plugin-react": "^3.16.1",
"express": "^4.13.3",
"express-cors": "0.0.3",
"express-session": "^1.13.0",
"http-proxy": "^1.12.1",
"http-proxy-middleware": "^0.9.1",
"isomorphic-fetch": "^2.2.1",
"knex": "^0.9.0",
"lodash": "^4.1.0",
"material-ui": "^0.14.2",
"materialize-css": "^0.97.5",
"moment": "^2.11.1",
"morgan": "^1.6.1",
"mysql": "^2.10.2",
"nock": "^7.0.2",
"passport": "^0.3.2",
"passport-facebook": "^2.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"react": "^0.14.6",
"react-addons-css-transition-group": "^0.14.7",
"react-dom": "^0.14.6",
"react-dropzone": "^3.3.2",
"react-geosuggest": "^1.15.1",
"react-google-maps": "^4.7.2",
"react-hot-loader": "^1.3.0",
"react-imageloader": "^2.1.0",
"react-redux": "^4.0.6",
"react-router": "^2.0.0-rc5",
"react-script-loader": "0.0.1",
"react-share": "^1.4.1",
"react-tap-event-plugin": "^0.2.1",
"redux": "^3.0.6",
"redux-form": "^4.1.5",
"redux-logger": "^2.4.0",
"redux-promise": "^0.5.1",
"redux-thunk": "^1.0.3",
"stripe": "^4.3.0",
"webpack": "^1.12.11"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta6",
"eslint": "^1.10.3",
"expect": "^1.13.4",
"mocha": "^2.4.5",
"react-addons-test-utils": "^0.14.7",
"redux-devtools": "^3.0.1",
"redux-mock-store": "0.0.6",
"supertest": "^1.1.0",
"uglify": "^0.1.5",
"webpack-dev-server": "^1.14.1",
"webpack-stream": "^3.1.0"
}
}