This repository has been archived by the owner on May 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
137 lines (137 loc) · 3.97 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "katuma-web-app",
"description": "Katuma front end application",
"author": "Katuma Team <[email protected]>",
"license": "MIT",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/coopdevs/katuma-web"
},
"homepage": "http://katuma.org",
"keywords": [
"cooperativa",
"universal",
"react",
"redux",
"babel"
],
"main": "bin/server.js",
"scripts": {
"start": "concurrent --kill-others \"yarn run start-prod\"",
"start-prod": "node ./node_modules/better-npm-run start-prod",
"build": "webpack --verbose --colors --display-error-details --config webpack/prod.config.js",
"lint": "eslint -c .eslintrc src",
"start-dev": "node ./node_modules/better-npm-run start-dev",
"watch-client": "node ./node_modules/better-npm-run watch-client",
"dev": "concurrent --kill-others \"yarn run watch-client\" \"yarn run start-dev\""
},
"betterScripts": {
"start-dev": {
"command": "node --debug ./bin/server.js",
"env": {
"NODE_PATH": "./src",
"NODE_ENV": "development",
"NODE_PORT": 8000,
"API_PORT": 3000
}
},
"start-prod": {
"command": "node ./bin/server.js",
"env": {
"NODE_PATH": "./src",
"NODE_ENV": "production",
"NODE_PORT": 8080,
"NODE_HOST": "127.0.0.1",
"API_SOCK_PATH": "/var/run/unicorn/unicorn.sock"
}
},
"watch-client": {
"command": "node webpack/webpack-dev-server.js",
"env": {
"UV_THREADPOOL_SIZE": 100,
"NODE_PATH": "./src"
}
}
},
"dependencies": {
"babel": "~5.8.29",
"babel-plugin-typecheck": "^2.0.0",
"body-parser": "^1.14.1",
"classnames": "^2.2.5",
"compression": "^1.6.0",
"connect-redis": "^3.0.0",
"express": "^4.13.3",
"express-http-proxy": "git://github.com/enricostano/express-http-proxy.git#preserve-request-session",
"express-session": "^1.12.1",
"file-loader": "^0.8.5",
"flexboxgrid": "^6.3.1",
"hoist-non-react-statics": "^1.0.3",
"invariant": "^2.2.0",
"lodash.camelcase": "^4.3.0",
"lru-memoize": "^1.0.0",
"map-props": "^1.0.0",
"moment": "2.17.0",
"object-assign": "4.1.0",
"piping": "^0.3.0",
"pretty-error": "^1.2.0",
"react": "15.3.2",
"react-bootstrap": "0.30.5",
"react-dom": "15.3.2",
"react-helmet": "3.1.0",
"react-inline-css": "^2.0.0",
"react-redux": "4.4.5",
"react-router": "3.0.0",
"react-router-bootstrap": "0.23.1",
"react-router-redux": "4.0.6",
"redux": "^3.0.4",
"redux-connect": "4.0.2",
"redux-form": "6.4.3",
"request": "^2.65.0",
"reselect": "2.0.1",
"rrule-alt": "2.2.3",
"serialize-javascript": "^1.1.2",
"serve-favicon": "^2.3.0",
"serve-static": "^1.10.0",
"underscore": "1.8.3",
"url-loader": "^0.5.7",
"warning": "^2.1.0",
"webpack-isomorphic-tools": "^2.2.18"
},
"devDependencies": {
"autoprefixer-loader": "3.1.0",
"babel-core": "~5.8.33",
"babel-eslint": "^4.1.3",
"babel-loader": "~5.3.3",
"babel-plugin-react-transform": "^1.1.1",
"babel-runtime": "~5.8.29",
"better-npm-run": "0.0.3",
"bootstrap-sass": "^3.3.5",
"bootstrap-sass-loader": "^1.0.9",
"clean-webpack-plugin": "0.1.4",
"concurrently": "0.1.1",
"css-loader": "0.23.1",
"eslint": "1.10.3",
"eslint-config-airbnb": "0.0.8",
"eslint-loader": "1.0.0",
"eslint-plugin-react": "3.4.2",
"extract-text-webpack-plugin": "0.9.1",
"json-loader": "0.5.4",
"node-inspector": "^0.12.3",
"node-sass": "3.4.2",
"react-a11y": "0.2.6",
"react-transform-catch-errors": "1.0.2",
"react-transform-hmr": "1.0.1",
"redbox-react": "1.2.6",
"sass-loader": "^3.1.2",
"strip-loader": "0.1.0",
"style-loader": "0.12.4",
"svg-sprite-loader": "0.0.27",
"webpack": "1.12.9",
"webpack-dev-middleware": "1.4.0",
"webpack-hot-middleware": "2.5.0"
},
"engines": {
"node": "4.6.0"
}
}