-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.5 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
{
"name": "starter-kit",
"version": "1.0.0",
"description": "React starter kit with redux and universal rendering",
"engines": {
"node": ">=6.0 <7",
"npm": ">=3.8 <4"
},
"main": "index.js",
"scripts": {
"start": "node ./build/server.js",
"dev": "npm-run-all --parallel open:src lint:watch",
"open:src": "babel-node ./webpack/dev.js",
"test": "karma start ./webpack/karma.js",
"lint": "esw webpack.config.* src tools --color",
"lint:watch": "npm run lint -- --watch",
"eslint": "eslint src",
"build": "rm -rf ./build && cross-env NODE_ENV=production webpack --config ./webpack/release.js",
"postinstall": "npm run build"
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"react",
"webpack",
"starter-kit",
"universal",
"eslint",
"live-reload",
"redux"
],
"author": "Snær Seljan Þóroddsson",
"license": "MIT",
"bugs": {
"url": "https://github.com/snaerth/react-redux-universal-starter-kit/issues"
},
"homepage": "https://github.com/snaerth/react-redux-universal-starter-kit",
"dependencies": {
"autoprefixer": "^6.4.1",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"bundle-loader": "^0.5.4",
"classnames": "^2.2.5",
"cli-color": "^1.1.0",
"compression": "^1.6.2",
"cross-env": "^2.0.1",
"css-loader": "^0.23.1",
"ejs": "^2.5.2",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"isomorphic-fetch": "^2.2.1",
"json-loader": "^0.5.4",
"json-stringify-safe": "^5.0.1",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"postcss-loader": "^0.10.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-helmet": "^3.1.0",
"react-hot-loader": "^1.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.6",
"redux": "^3.6.0",
"redux-immutable-state-invariant": "^1.2.3",
"redux-thunk": "^2.1.0",
"request": "^2.75.0",
"style-loader": "^0.13.1",
"stylint": "^1.5.6",
"stylus": "^0.54.5",
"stylus-loader": "^2.3.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"browser-sync": "^2.16.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.1",
"enzyme": "^2.4.1",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-import-resolver-webpack": "^0.6.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.10.3",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.2.2",
"eslint-watch": "^2.1.14",
"http-proxy-middleware": "^0.17.1",
"karma": "^1.3.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"npm-run-all": "^3.1.0",
"open": "0.0.5",
"react-addons-test-utils": "^15.3.1",
"source-map-support": "^0.4.2",
"stylelint": "^7.2.0",
"stylelint-webpack-plugin": "^0.3.1",
"webpack-dev-middleware": "^1.8.1",
"webpack-hot-middleware": "^2.12.2"
}
}