forked from dvdzkwsk/react-redux-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
150 lines (150 loc) · 4.32 KB
/
package.json
File metadata and controls
150 lines (150 loc) · 4.32 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "universal-react-redux-starter-kit",
"version": "1.0.0",
"description": "Get started with React, Redux, and React-Router!",
"main": "index.js",
"engines": {
"node": ">=4.2.0",
"npm": "^3.0.0"
},
"scripts": {
"clean": "rimraf dist",
"compile": "babel-node bin/compile",
"lint": "eslint . ./",
"lint:fix": "npm run lint -- --fix",
"start": "better-npm-run start",
"dev": "better-npm-run dev",
"dev:nw": "npm run dev -- --nw",
"dev:no-debug": "npm run dev -- --no_debug",
"test": "better-npm-run test",
"test:dev": "npm run test -- --watch",
"deploy": "better-npm-run deploy",
"flow:check": "babel-node bin/flow-check",
"codecov": "cat coverage/*/lcov.info | codecov"
},
"betterScripts": {
"dev": {
"command": "concurrently --raw 'nodemon --exec babel-node bin/server' 'babel-node bin/watch'",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"deploy": {
"command": "npm run clean && npm run compile",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
},
"start": {
"command": "babel-node bin/server",
"env": {
"DEBUG": "app:*"
}
},
"test": {
"command": "babel-node ./node_modules/karma/bin/karma start bin/karma",
"env": {
"NODE_ENV": "test",
"DEBUG": "app:*"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/davezuko/react-redux-starter-kit.git"
},
"author": "David Zukowski <david@zuko.me> (http://zuko.me)",
"license": "MIT",
"dependencies": {
"better-npm-run": "0.0.7",
"co-request": "^1.0.0",
"cookie-dough": "0.0.6",
"cookie-parser": "^1.4.1",
"debug": "^2.2.0",
"express": "^4.13.4",
"history": "^2.0.0",
"iconv-lite": "^0.4.13",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-helmet": "^2.3.1",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"react-router-redux": "^4.0.0-rc.2",
"redux": "^3.3.1",
"redux-thunk": "^1.0.3",
"serialize-javascript": "^1.1.2",
"superagent": "^1.7.2",
"superagent-defaults": "^0.1.14",
"superagent-promise": "^1.1.0",
"url": "^0.11.0",
"webpack-isomorphic-tools": "^2.2.29",
"yargs": "^4.1.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-loader": "^6.2.3",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.5.2",
"babel-runtime": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"chai-enzyme": "^0.4.1",
"cheerio": "^0.20.0",
"codecov": "^1.0.1",
"concurrently": "^2.0.0",
"css-loader": "^0.23.1",
"cssnano": "^3.5.2",
"enzyme": "^2.0.0",
"eslint": "2.2.0",
"eslint-config-standard": "^5.1.0",
"eslint-config-standard-react": "^2.3.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-babel": "^3.1.0",
"eslint-plugin-flow-vars": "^0.1.3",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-react": "^4.0.0",
"eslint-plugin-standard": "^1.3.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"flow-bin": "^0.21.0",
"flow-interfaces": "^0.2.1",
"fs-extra": "^0.26.5",
"imports-loader": "^0.6.5",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "0.13.21",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.2",
"karma-mocha-reporter": "^1.2.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"nodemon": "^1.9.0",
"phantomjs-polyfill": "0.0.1",
"phantomjs-prebuilt": "^2.1.4",
"postcss-loader": "^0.8.1",
"react-addons-test-utils": "^0.14.7",
"redux-devtools": "^3.1.1",
"redux-devtools-dock-monitor": "^1.1.0",
"redux-devtools-log-monitor": "^1.0.4",
"rimraf": "^2.5.2",
"sass-loader": "^3.1.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "1.12.13",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.7.1"
}
}