forked from icd2k3/react-redux-slideshow-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.33 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
{
"name": "react-redux-slideshow-example",
"version": "1.0.0",
"description": "Example of a React, Redux, Webpack, Karma FE stack",
"main": "src/index.jsx",
"scripts": {
"dev": "./node_modules/.bin/better-npm-run dev",
"dist": "./node_modules/.bin/better-npm-run dist",
"karma": "./node_modules/.bin/better-npm-run karma",
"test": "./node_modules/.bin/better-npm-run test"
},
"betterScripts": {
"dev": {
"command": "./node_modules/.bin/webpack-dashboard -t slideshow -c cyan -- ./node_modules/.bin/webpack-dev-server --config webpack/webpack.config.js --inline --hot -d",
"env": {
"NODE_ENV": "development"
}
},
"dist": {
"command": "./node_modules/.bin/webpack --config webpack/webpack.config.js --progress --bail",
"env": {
"NODE_ENV": "production"
}
},
"karma": {
"command": "./node_modules/.bin/karma start",
"env": {
"NODE_ENV": "test"
}
},
"test": {
"command": "npm-run-all karma dist"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/icd2k3/react-redux-slideshow-example"
},
"author": "Justin Schrader",
"license": "MIT",
"bugs": {
"url": "https://github.com/icd2k3/react-redux-slideshow-example/issues"
},
"homepage": "https://github.com/icd2k3/react-redux-slideshow-example#readme",
"dependencies": {
"keymirror": "^0.1.1",
"react": "^15.3.1",
"react-addons-css-transition-group": "^15.3.1",
"react-dom": "^15.3.1",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-logger": "^2.6.1",
"redux-saga": "^0.11.1"
},
"devDependencies": {
"autoprefixer": "^6.4.1",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"better-npm-run": "0.0.11",
"chai": "^3.5.0",
"clean-webpack-plugin": "^0.1.10",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"deep-sort-object": "^1.0.1",
"enzyme": "^2.4.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^11.0.0",
"eslint-import-resolver-webpack": "^0.5.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.22.0",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^1.1.1",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"npm-run-all": "^3.1.0",
"outdent": "^0.1.2",
"path": "^0.12.7",
"postcss-import": "^8.1.2",
"postcss-loader": "^0.13.0",
"postcss-reporter": "^1.4.1",
"precss": "^1.4.0",
"react-addons-test-utils": "^15.3.1",
"react-transform-hmr": "^1.0.4",
"redux-mock-store": "^1.2.0",
"style-loader": "^0.13.1",
"stylelint": "^7.2.0",
"stylelint-config-standard": "^13.0.0",
"webpack": "^1.13.2",
"webpack-dashboard": "^0.1.8",
"webpack-dev-server": "^1.15.1",
"webpack-merge": "^0.14.1"
},
"engines": {
"node": ">=5.12.0",
"npm": ">=3.8.6"
}
}