-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "no-redux",
"version": "0.5.0",
"description": "A react/redux library which automates all redux flows including http calls, and store immutability is guaranteed. Redux becomes invisible to you, hence the name no-redux.",
"keywords": [
"javascript",
"react",
"redux",
"ramda",
"immutable",
"redux-cycles",
"cyclejs",
"http-requests",
"reselect"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ln613/no-redux.git"
},
"main": "dist",
"scripts": {
"start": "watch \"npm run build\" src",
"build": "babel src --out-dir dist",
"test": "jest"
},
"author": "Nan Li",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^21.2.0",
"jest": "^21.2.1",
"watch": "^1.0.2"
},
"dependencies": {
"@cycle/http": "^14.7.0",
"ipath": "^0.1.0",
"ramda": "^0.25.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-cycles": "^0.4.1"
}
}