-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.78 KB
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
{
"name": "rc-redux-model",
"version": "1.1.10",
"description": "react状态管理,提供一种更加舒适的写法,让你简洁优雅的去写状态管理;借鉴 dva 的数据流方案,参考 redux-thunk,内部实现中间件;提供默认行为 action,调用此 action 可直接修改 state 里的任意值,开发更加方便简洁,支持 Immutable,让你从毫无意义的重复工作中解脱",
"main": "lib/index.js",
"scripts": {
"jest:start": "jest test",
"build:prod": "./node_modules/.bin/babel core --out-dir lib --extensions '.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PDKSophia/rc-redux-model.git"
},
"keywords": [
"dva",
"react",
"redux",
"model"
],
"author": "彭道宽",
"license": "ISC",
"bugs": {
"url": "https://github.com/PDKSophia/rc-redux-model/issues"
},
"homepage": "https://github.com/PDKSophia/rc-redux-model#readme",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/invariant": "^2.2.34",
"@types/seamless-immutable": "^7.1.15",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"babel-jest": "^26.3.0",
"eslint": "^7.29.0",
"eslint-config-alloy": "^4.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.4.0",
"prettier": "^2.3.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.10"
},
"dependencies": {
"core-js": "2",
"invariant": "^2.2.4",
"redux": "^4.0.5",
"seamless-immutable": "^7.1.4"
}
}