-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.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
{
"name": "dva-lite",
"version": "0.1.0",
"description": "dva-lite is a lite dva that write effects with async function",
"main": "libs/cjs/dva-lite.js",
"module": "libs/es/dva-lite.js",
"unpkg": "libs/umd/dva-lite.js",
"files": [
"libs",
"types"
],
"scripts": {
"test": "jest ./tests",
"build": "rollup -c ./rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zgoby/dva-lite.git"
},
"keywords": [
"dva",
"dva-lite",
"async",
"dva",
"redux-async-middleware"
],
"author": "zigo",
"license": "ISC",
"bugs": {
"url": "https://github.com/zgoby/dva-lite/issues"
},
"homepage": "https://github.com/zgoby/dva-lite#readme",
"dependencies": {
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-router-dom": "^5.1.6",
"history": "^5.0.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-redux": "^7.2.2",
"react-router-dom": "^5.2.0",
"redux": "^4.0.5"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.0",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}