-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3.26 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
{
"name": "redux-react-basic",
"version": "1.0.0",
"description": "version 1.0.0 of basic structure based on Koa.js, Redux React with ES2015/ES7 ",
"main": "main.js",
"engines": {
"node": ">=5.6.0",
"npm": "^3.0.0"
},
"scripts": {
"start": "better-npm-run start",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "better-npm-run deploy"
},
"betterScripts": {
"start": {
"command": "babel-node bin/server",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy": {
"command": "rimraf dist && babel-node bin/compile",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
}
},
"repository": {
"type": "git",
"url": ""
},
"author": "Shimi Bar <shimi@adience.com>",
"dependencies": {
"better-npm-run": "0.0.7",
"debug": "^2.2.0",
"estraverse-fb": "^1.3.1",
"history": "^2.0.0",
"koa": "^2.0.0-alpha.3",
"koa-connect-history-api-fallback": "^0.3.0",
"koa-convert": "^1.2.0",
"koa-static": "^2.0.0",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"react-redux": "^4.0.0",
"react-router": "^2.0.0",
"react-router-proxy-loader": "^0.5.0",
"react-router-redux": "^4.0.0",
"redux": "^3.0.5",
"redux-thunk": "^1.0.0",
"whatwg-fetch": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.3.17",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.0",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-react-constant-elements": "^6.5.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.2",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-2": "^6.5.0",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.3.13",
"babel-runtime": "^6.3.19",
"better-npm-run": "0.0.7",
"css-loader": "^0.23.0",
"cssnano": "^3.3.2",
"eslint": "^2.2.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.2.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-flow-vars": "^0.2.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^4.0.0",
"eslint-plugin-standard": "^1.3.1",
"extract-text-webpack-plugin": "^1.0.0",
"file-loader": "^0.8.5",
"flow-bin": "^0.22.0",
"flow-interfaces": "^0.3.0",
"fs-extra": "^0.26.3",
"html-webpack-plugin": "^2.7.1",
"imports-loader": "^0.6.5",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "^0.13.21",
"koa-logger": "^1.3.0",
"node-sass": "^3.3.3",
"postcss-loader": "^0.8.0",
"react-addons-test-utils": "^0.14.0",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.2",
"redbox-react": "^1.2.2",
"redux-devtools": "^3.0.0",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.1",
"rimraf": "^2.5.1",
"sass-loader": "^3.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.6",
"webpack": "1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0",
"yargs": "^4.0.0"
}
}