-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.53 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
79
80
81
{
"name": "@maoyan/tangdao",
"version": "1.1.2",
"main": "dist/tangdao.min.js",
"homepage": "https://github.com/MaoYanTech/tangdao/wiki",
"repository": "github:MaoYanTech/tangdao",
"author": "myfe <[email protected]>",
"maintainers": [
{
"name": "wangkemiao",
"email": "[email protected]"
},
{
"name": "haojie04",
"email": "[email protected]"
},
{
"name": "wenyunyan",
"email": "[email protected]"
},
{
"name": "pangzhihong",
"email": "[email protected]"
},
{
"name": "caoxueying",
"email": "[email protected]"
}
],
"license": "MIT",
"scripts": {
"dev": "npm i && rollup --watch --c ./configs/rollup_config.js",
"build": "npm run build:un-uglify & npm run build:uglify",
"build:un-uglify": "NODE_ENV=development rollup --c ./configs/rollup_config.js",
"build:uglify": "NODE_ENV=production rollup --c ./configs/rollup_config.js",
"autoPublish": "./scripts/publish.sh",
"test": "jest --coverage"
},
"dependencies": {
"connected-react-router": "^4.5.0",
"histore": "^1.0.0",
"invariant": "^2.2.4",
"isomorphic-fetch": "^2.2.1",
"react-redux": "^4.4.8 || ^5.0.7",
"react-router-dom": "^4.3.0",
"redux": "^3.6.0 || ^4.0.0",
"redux-saga": "^1.0.5"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.2",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-uglify": "^6.0.3"
},
"peerDependencies": {
"react": "^15.5.4 || ^16.0.0",
"react-dom": "^15.5.4 || ^16.0.0"
},
"description": "唐刀是一款基于 redux + redux-saga 以 model 为核心的数据流管理工具,它将 store 和 saga 统一为 model 的概念,写在一个 js 文件中,以对象配置的概念维护 state、 reducers、effects 等。",
"bugs": {
"url": "https://github.com/MaoYanTech/tangdao/issues"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"keywords": ["reudx", "redux-saga", "@maoyan/tangdao"]
}