-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
103 lines (103 loc) · 2.99 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "rdeco",
"version": "1.0.0",
"description": "基于响应式的应用开发框架",
"private": true,
"keywords": [
"react",
"flux",
"hook",
"state",
"useReducer",
"rxjs"
],
"licenses": "MIT",
"author": "shihong <112365362@qq.com>",
"repository": {
"type": "git",
"url": "https://github.com/kinop112365362/rdeco"
},
"types": "./types",
"main": "./lib/index.js",
"module": "es/index.js",
"files": [
"dist",
"lib",
"packages",
"es"
],
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces run build",
"ver": "lerna version",
"pub": "git pull && yarn build && yarn link:lerna && yarn test && lerna publish",
"link:lerna": "lerna link --force-local",
"format": "prettier --write \"{src,test}/**/*.{js,ts}\" index.d.ts \"docs/**/*.md\"",
"lint": "eslint packages/**/src --fix",
"pretest": "npm run lint",
"test": "jest"
},
"peerDependencies": {
"@babel/runtime": "^7.12.1",
"react": "^16.8.3 || ^17",
"router5": "^8.0.1",
"router5-plugin-browser": "^8.0.1",
"router5-plugin-logger": "^8.0.1",
"rxjs": "^7.4.0"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/plugin-transform-react-display-name": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.13.0",
"@babel/runtime": "^7.12.1",
"@emotion/babel-plugin": "^11.2.0",
"@emotion/react": "^11.7.1",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@shopify/jest-dom-mocks": "^3.0.5",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/jest-native": "^3.4.3",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/react-native": "^7.1.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.1",
"babel-plugin-transform-remove-console": "^6.9.4",
"codecov": "^3.8.0",
"commander": "^8.2.0",
"create-react-class": "^15.7.0",
"cross-env": "^7.0.2",
"es3ify": "^0.2.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"glob": "^7.1.6",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"prettier": "^2.1.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.14.0",
"rimraf": "^3.0.2",
"router5": "^8.0.1",
"router5-plugin-browser": "^8.0.1",
"router5-plugin-logger": "^8.0.1",
"rxjs": "^7.4.0",
"shelljs": "^0.8.4",
"typescript": "^4.2.3",
"lodash.isplainobject":"^4.0.6"
}
}