-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.38 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
{
"name": "medux",
"version": "0.0.0",
"description": "",
"repository": "https://github.com/wooline/medux",
"homepage": "https://github.com/wooline/medux/blob/master/npm.md",
"author": "wooline <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": ">=9.0.0"
},
"keywords": [],
"workspaces": [
"packages/core",
"packages/route-web",
"packages/route-browser",
"packages/route-mp",
"packages/react-web-router",
"packages/react-taro-router"
],
"scripts": {
"lerna": "lerna publish",
"typeCheck": "tsc",
"lintCheck": "eslint --cache .",
"build:core": "lerna run build --scope @medux/core",
"build:web": "lerna run build --scope @medux/web",
"build:react": "lerna run build --scope @medux/react",
"build:route-plan-a": "lerna run build --scope @medux/route-plan-a",
"build:react-web-router": "lerna run build --scope @medux/react-web-router",
"build:react-native-router": "lerna run build --scope @medux/react-native-router",
"build:dev-utils": "lerna run build --scope @medux/dev-utils",
"test": "eslint ./packages/core/scripts/build.js",
"babel:test": "BABEL_SHOW_CONFIG_FOR=./packages/core/src/index.ts babel ./packages/core/src/index.ts",
"eslintConfig": "eslint --print-config /Users/zy/work/medux/medux/packages/react/src/index.tsx > eslintConfig.txt"
},
"resolutions": {
"@types/node": "~14.14.7",
"@types/jest": "~26.0.15",
"@types/express": "~4.17.9",
"@types/react": "~16.9.23",
"@types/react-dom": "~16.9.5",
"@types/react-redux":"~7.1.15"
},
"dependencies": {
"react": "~16.14.0",
"react-dom": "~16.14.0",
"react-redux": "~7.2.2"
},
"devDependencies": {
"@types/node": "~14.14.7",
"@types/jest": "~26.0.15",
"@types/express": "~4.17.9",
"@types/react": "~16.9.23",
"@types/react-dom": "~16.9.5",
"@types/react-redux":"~7.1.15",
"@rollup/plugin-alias": "~3.1.0",
"@rollup/plugin-babel": "~5.2.1",
"@rollup/plugin-commonjs": "~16.0.0",
"@rollup/plugin-node-resolve": "~10.0.0",
"@rollup/plugin-replace": "~2.3.4",
"@medux/dev-pkg": "~2.1.4",
"express": "~4.17.1",
"rollup": "~2.33.1",
"rollup-plugin-terser": "~7.0.2",
"jest": "~26.6.3",
"lerna": "~3.22.1",
"replace-in-file": "~6.1.0",
"typedoc": "~0.19.2",
"typedoc-plugin-markdown": "~3.0.11",
"typescript": "~4.0.0"
}
}