-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.96 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
{
"name": "unit-testing-react-redux",
"version": "1.0.0",
"description": "Helpful patterns to unit test a react redux app",
"main": "app/index.html",
"dependencies": {
"babel-polyfill": "^6.16.0",
"immutable": "^3.8.1",
"react": "^15.4.0",
"react-dom": "^15.4.0",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-immutable": "^3.0.8",
"redux-saga": "^0.13.0",
"redux-thunk": "^2.1.0",
"reselect": "^2.5.4",
"styled-components": "^1.0.11",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-airbnb": "^2.1.1",
"coveralls": "^2.11.15",
"css-loader": "^0.26.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.2",
"eslint-plugin-react": "^6.7.1",
"file-loader": "^0.9.0",
"jasmine-core": "^2.5.2",
"jasmine-enzyme": "^2.0.0",
"jasmine-immutablejs-matchers": "^0.1.2",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"null-loader": "^0.1.1",
"react-addons-test-utils": "^15.4.0",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2"
},
"scripts": {
"build": "webpack",
"start": "webpack-dev-server --hot --inline",
"test": "karma start ./testing/karma.conf.js",
"lint-js": "eslint '**/*.js' --ignore-path .gitignore"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/giamir/unit-testing-react-redux.git"
},
"author": "Giamir Buoncristiani",
"license": "ISC",
"bugs": {
"url": "https://github.com/giamir/unit-testing-react-redux/issues"
},
"homepage": "https://github.com/giamir/unit-testing-react-redux#readme"
}