-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.65 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.65 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
{
"name": "react-redux-starter-kit",
"version": "1.0.0",
"description": "An opinionated react+redux starter kit.",
"main": "index.js",
"scripts": {
"test": "node_modules/karma/bin/karma start build/test/karma.conf.js --single-run",
"watch:test": "node_modules/karma/bin/karma start build/test/karma.conf.js",
"build:script": "node_modules/.bin/webpack --config=build/webpack.config.js -v -d --display-error-details",
"watch:script": "node_modules/.bin/webpack --config=build/webpack.config.js -w -v -d --display-error-details",
"prod:script": "node_modules/.bin/webpack --config=build/webpack.config.js -p -v -d --display-error-details",
"build:style": "sass common/styles/main.scss:public/dist/style.css",
"watch:style": "sass --watch common/styles/main.scss:public/dist/style.css",
"server": "node server",
"make-app-symlink": "cd node_modules && ln -nsf ../ app",
"prewatch": "npm run make-app-symlink",
"postinstall": "npm run make-app-symlink",
"prebuild": "cp .env.example .env && npm run make-app-symlink",
"dev": "npm-run-all --parallel watch:script watch:style",
"start": "npm run build:style && npm run prod:script && npm run server"
},
"author": "Kier Borromeo <seraphipod@gmail.com> (http://srph.github.io)",
"license": "ISC",
"dependencies": {
"axios": "^0.7.0",
"axios-response-logger": "^0.1.0",
"babel-polyfill": "^6.1.19",
"babel-register": "^6.2.0",
"classnames": "^2.2.0",
"cookie-machine": "^0.1.1",
"history": "^1.13.0",
"koa": "^1.1.2",
"koa-static": "^1.5.2",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"react-helmet": "^2.1.1",
"react-redux": "^4.0.0",
"react-resolver": "^2.0.5",
"react-router": "^1.0.0",
"redux": "^3.0.4",
"redux-simple-router": "^1.0.2",
"redux-thunk": "^1.0.0",
"url-join": "0.0.1"
},
"devDependencies": {
"babel": "^6.1.5",
"babel-core": "^6.1.4",
"babel-loader": "^6.1.0",
"babel-plugin-transform-inline-environment-variables": "^6.3.13",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"chai": "^3.4.1",
"dotenv": "^1.2.0",
"dotenv-autoload": "^0.1.3",
"enzyme": "^1.3.1",
"karma": "^0.13.15",
"karma-mocha": "^0.2.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-spec-reporter": "0.0.23",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.4",
"npm-run-all": "^1.4.0",
"phantomjs": "^1.9.18",
"redux-devtools": "^3.0.0-beta-3",
"redux-devtools-dock-monitor": "^1.0.0-beta-3",
"redux-devtools-log-monitor": "^1.0.0-beta-3",
"sinon": "^1.17.2",
"webpack": "^1.12.4"
}
}