-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.96 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.96 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
{
"name": "quiz-app",
"version": "0.0.1",
"description": "Quiz App",
"scripts": {
"start": "node server.js",
"test": "cross-env NODE_ENV=test istanbul cover --dir ./coverage --report lcov ./node_modules/.bin/mocha-webpack -- --opts config/mocha-webpack.opts",
"test:watch": "npm test -- --watch",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "https://github.com/reactjs/redux.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/reactjs/redux/issues"
},
"homepage": "http://redux.js.org",
"dependencies": {
"autoprefixer": "^6.3.6",
"babel-polyfill": "^6.3.14",
"babel-preset-stage-0": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-standalone": "^6.7.4",
"classnames": "^2.1.2",
"extract-text-webpack-plugin": "^1.0.1",
"immutable": "^3.8.1",
"isomorphic-fetch": "^2.2.1",
"node-sass": "3.4.2",
"normalize.css": "^4.1.1",
"react": "^0.14.7",
"react-addons-css-transition-group": "^0.14.8",
"react-dom": "^0.14.7",
"react-redux": "^4.2.1",
"react-refetch": "^1.0.0-beta.4",
"react-router": "^2.3.0",
"react-router-redux": "^4.0.4",
"react-toolbox": "^0.16.2",
"redux": "^3.2.1",
"redux-api": "^0.9.3",
"redux-thunk": "^2.0.1",
"sass-loader": "^2.0.1",
"transfer-webpack-plugin": "^0.1.4"
},
"devDependencies": {
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.1.1",
"babel-register": "^6.3.13",
"coveralls": "^2.11.9",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"expect": "^1.8.0",
"exports-loader": "^0.6.3",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"gh-pages": "^0.11.0",
"highlight-loader": "git://github.com/javivelasco/highlight-loader.git#master",
"highlight.js": "^9.3.0",
"html-loader": "^0.4.0",
"html-webpack-plugin": "^2.15.0",
"imports-loader": "^0.6.5",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "^9.1.0",
"json-loader": "^0.5.4",
"karma-coverage": "^1.0.0",
"markdown-loader": "^0.1.7",
"mocha": "^2.4.5",
"mocha-webpack": "^0.3.1",
"nock": "^8.0.0",
"node-fetch": "^1.5.2",
"node-libs-browser": "^0.5.2",
"path-alias": "0.0.7",
"postcss-loader": "^0.8.2",
"raw-loader": "^0.5.1",
"react-addons-test-utils": "^0.14.7",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.3",
"redux-mock-store": "^1.0.3",
"sass-loader": "^3.2.0",
"style-loader": "^0.12.3",
"todomvc-app-css": "^2.0.1",
"toolbox-loader": "0.0.2",
"transfer-webpack-plugin": "^0.1.4",
"webpack": "^1.9.11",
"webpack-dev-middleware": "^1.2.0",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.9.1",
"webpack-node-externals": "^1.2.0"
}
}