-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.36 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
{
"name": "checkpoints",
"version": "1.0.0",
"description": "Checkpoints!",
"private": true,
"scripts": {
"server": "set DEBUG=checkpoints:*&&node ./server/dist/www",
"webpack-web": "webpack-dev-server --progress --colors --hot --inline --content-base web/dist/ --config webpack.web.config.js --host 0.0.0.0",
"webpack-server": "webpack -d --progress --watch --config webpack.node.config.js",
"build-web": "webpack --progress --config webpack.web.config.js",
"build-server": "webpack --progress --config webpack.node.config.js",
"build-all": "npm install&&npm run build-server&&npm run build-web",
"build-prod": "set NODE_ENV=production&&set MONGODB=mongodb://dev:[email protected]:11790/checkpoints_prod&&set FACEBOOK_CALLBACK=http://checkpoints-demo.herokuapp.com/api/auth/facebook/callback&&set FACEBOOK_APP_ID=1166817503395052&&set FACEBOOK_APP_SECRET=9b3cea8cfd56124fc3497f1b4d4de622&&npm run build-all",
"start": "node ./server/dist/www"
},
"engines": {
"node": "6.7.0"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"classnames": "^2.2.5",
"cookie-parser": "^1.4.3",
"cors": "^2.8.1",
"cron": "^1.1.1",
"dateformat": "^1.0.12",
"debug": "^2.2.0",
"email-templates": "^2.5.4",
"express": "^4.14.0",
"facebook-events-by-location-core": "^0.1.4",
"fb": "^1.1.1",
"flexboxgrid": "^6.3.1",
"handlebars": "^4.0.6",
"immutability-helper": "^2.0.0",
"js-cookie": "^2.1.3",
"lodash": "^4.16.4",
"material-colors": "^1.2.0",
"mongodb": "^2.2.10",
"mongoose": "^4.6.3",
"mongoose-auto-increment": "^5.0.1",
"morgan": "^1.7.0",
"multer": "^1.2.0",
"node-fetch": "^1.6.3",
"node-freegeoip": "0.0.1",
"nodemailer": "^2.6.4",
"normalize-scss": "^5.0.4",
"oauth2orize": "^1.5.0",
"passport": "^0.3.2",
"passport-custom": "^1.0.5",
"passport-facebook": "^2.1.1",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"passport-oauth2-public-client": "^0.1.0",
"querystring": "^0.2.0",
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-addons-shallow-compare": "^15.3.2",
"react-addons-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"react-dropzone": "^3.7.0",
"react-geosuggest": "^2.0.0",
"react-linkify": "^0.1.3",
"react-measure": "^1.3.1",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"redux": "^3.6.0",
"redux-form": "^6.1.1",
"redux-thunk": "^2.1.0",
"uid-safe": "^2.1.2",
"uuid-1345": "^0.99.6",
"validator": "^6.1.0",
"whatwg-fetch": "^1.0.0",
"whatwg-streams": "^0.1.1"
},
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.25.0",
"empty-module": "0.0.2",
"file-loader": "^0.9.0",
"json-loader": "^0.5.4",
"node-sass": "^3.10.1",
"postcss-loader": "^0.13.0",
"sass-loader": "^4.0.2",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"ts-loader": "^0.9.1",
"typescript": "^2.0.3",
"typings": "^1.4.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
}
}