-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.03 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": "spunky",
"version": "1.3.1",
"description": "Lifecycle management for react-redux",
"main": "lib/index.js",
"repository": "https://github.com/neoverse/spunky",
"author": "Matt Huggins",
"license": "MIT",
"scripts": {
"build:dev": "yarn run webpack --env.dev",
"build:prod": "yarn run webpack --env.prod",
"clean": "rm -rf lib",
"test": "mocha --config test/mocha.opts",
"lint": "eslint src/*.js test/*.js",
"prepublishOnly": "yarn run lint && yarn run flow && yarn run test && yarn run build:prod"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0 || ^16.0.0-0",
"redux": "^2.0.0 || ^3.0.0"
},
"devDependencies": {
"app-module-path": "^2.2.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-react-display-name": "^6.25.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-enzyme": "1.0.0-beta.0",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.4",
"dirty-chai": "^2.0.1",
"enzyme": "^3.3.0",
"eslint": "^4.18.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"flow-bin": "^0.67.1",
"jsdom": "^11.6.2",
"mocha": "^5.0.1",
"react": "^16.2.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-saga": "^0.16.0",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"dependencies": {
"lodash": "^4.17.5",
"react-redux": "^5.0.6",
"recompose": "^0.26.0",
"redux-saga": "^0.16.0"
}
}