-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 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
114
115
116
117
118
119
120
{
"name": "shandy-club",
"version": "1.0.0",
"description": "Shandy Club",
"main": "server.bundle.js",
"engines": {
"node": "~7.10.0"
},
"pre-commit": {
"run": [
"test",
"lint"
],
"silent": true
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
],
"env": {
"production": {
"presets": [
"es2015",
"react",
"react-optimize",
"stage-2"
]
}
}
},
"scripts": {
"test": "babel-node test | faucet",
"lint": "npm run lint:js",
"lint:js": "eslint --config config/.eslintrc.js app/",
"db": "npm-run mongo-express -u admin -p admin -d shandyclub",
"start": "webpack-dev-server --config config/webpack.config.dev.js & NODE_ENV=development nodemon --exec babel-node app/server/index.js",
"now-start": "node server.bundle.js",
"build": "npm run build:client && npm run build:server",
"build:client": "NODE_ENV=production webpack --config config/webpack.config.prod.js --progress --profile --colors",
"build:server": "webpack --config config/webpack.config.server.js",
"now-build": "",
"deploy": "npm run build && now public/ -e MAPBOX_API=@mapbox-api-key -e MONGO_URL=@mongo-shandy-prod && now alias `pbpaste` shandy.club"
},
"repository": {
"type": "git",
"url": "https://github.com/ShandyClub/shandy-club-app.git"
},
"keywords": [
"shandy",
"club",
"beer",
"pubs"
],
"author": "Luke Hedger <luke.hedger@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ShandyClub/shandy-club-app/issues"
},
"homepage": "http://shandy.club/",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-2": "^6.5.0",
"clean-webpack-plugin": "^0.1.8",
"copy-webpack-plugin": "^1.1.1",
"eslint": "^3.2.2",
"eslint-config-unlease": "^3.0.2",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-react": "^6.0.0",
"faucet": "0.0.1",
"html-webpack-plugin": "^2.21.0",
"mongo-express": "^0.30.59",
"nodemon": "^1.9.2",
"pre-commit": "^1.1.3",
"tape": "^4.4.0",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"body-parser": "^1.15.2",
"co": "^4.6.0",
"color": "^0.11.4",
"compression": "^1.6.2",
"deep-equal": "^1.0.1",
"express": "^4.14.0",
"http-proxy": "^1.14.0",
"immutable": "^3.7.6",
"immutable-props": "^1.1.0",
"leaflet": "^1.0.1",
"leaflet.markercluster": "^1.0.0",
"mapbox": "^1.0.0-beta1",
"mixpanel-browser": "^2.9.15",
"mo-js": "^0.288.1",
"mongoose": "^4.5.3",
"mongoose-simple-random": "^0.3.3",
"node-uuid": "^1.4.7",
"react": "^15.0.1",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.0.1",
"react-redux": "^4.4.2",
"react-router": "^2.0.0",
"react-router-redux": "^4.0.2",
"redux": "^3.4.0",
"redux-analytics": "^0.3.1",
"redux-immutablejs": "0.0.8",
"redux-logger": "^2.6.1",
"redux-saga": "^0.11.0",
"regenerator-runtime": "^0.9.5",
"reselect": "^2.3.0",
"styled-components": "^1.4.2"
}
}