-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.13 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
{
"name": "redux-synapse",
"version": "0.4.2",
"main": "lib/index.js",
"files": [
"src",
"lib"
],
"keywords": [
"redux",
"react redux alternative",
"react redux bindings",
"synapse",
"redux synapse",
"redux performance"
],
"description": "Layer above Redux to help explicitly bind React components to the store. Great for performance and frequenetly updating apps. Alternative to react-redux",
"scripts": {
"start": "webpack-dev-server --config ./demo/webpack.config.js --content-base ./demo",
"build": "rimraf lib && babel src --out-dir lib --copy-files --ignore tests",
"build:demo": "webpack ./demo --config ./examples/webpack.config.js",
"watch:demo": "webpack --watch ./demo --config ./demo/webpack.config.js",
"lint": "eslint ./src",
"test": "jest",
"test:tc": "jest --runInBand"
},
"author": "Jon Evans ([email protected])",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "6.24.0",
"babel-eslint": "^5.0.0",
"babel-jest": "10.0.2",
"babel-loader": "6.4.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "6.24.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"body-parser": "^1.14.1",
"css-loader": "^0.27.3",
"enzyme": "2.2.0",
"eslint": "^1.0.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.2.0",
"express": "^4.13.3",
"gulp": "3.9.1",
"hoist-non-react-statics": "1.2.0",
"immutable": "3.8.1",
"jest-cli": "19.0.2",
"node-sass": "^4.5.1",
"prettyjson": "^1.1.3",
"react": "15.4.1",
"react-addons-test-utils": "15.4.1",
"react-dom": "15.4.1",
"react-redux": "5.0.1",
"redux": "3.6.0",
"redux-thunk": "2.2.0",
"sass-loader": "^6.0.3",
"sinon": "1.17.3",
"style-loader": "^0.16.0",
"webpack": "2.3.1",
"webpack-dev-server": "2.4.2"
},
"dependencies": {
"shallowequal": "0.2.2"
},
"jest": {
"testPathDirs": [
"<rootDir>/src"
],
"unmockedModulePathPatterns": [
"react",
"enzyme",
"shallowequal"
],
"verbose": true
}
}