-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.7 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.7 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
55
56
57
58
59
60
61
62
63
64
{
"name": "schema-plugin-flow",
"private": true,
"license": "MIT",
"description": "A highly extensible JavaScript library, abbreviated as Sifo. 高扩展性、可二开的插件式前端开发框架",
"scripts": {
"i": "npm install --no-package-lock --ignore-scripts && lerna bootstrap",
"clean": "lerna clean",
"prepare": "npm run lint && npm run build",
"publish": "npm run prepare && lerna publish",
"publish-from-git": "lerna publish from-git",
"publish-from-package": "lerna publish from-package",
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "lerna exec -- babel --root-mode upward src --out-dir lib --copy-files --extensions \".ts,.tsx,.js,.jsx\"",
"build:es": "lerna run build:es",
"lint": "lerna run lint",
"test": "lerna run test",
"lerna-build": "lerna run build",
"i-vue": "node examples-vue/server.js i",
"build-vue": "node examples-vue/server.js build",
"start-vue": "cd examples-vue && npm run serve",
"start": "npm run build && npm run dev",
"dev": "npx dumi dev",
"i-web": "cd web-app && npm i",
"start-web": "cd web-app && npm run start"
},
"devDependencies": {
"@alifd/next": "^1.24.14",
"@babel/cli": "^7.10.5",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-do-expressions": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-bind": "^7.10.5",
"@babel/plugin-proposal-function-sent": "^7.12.1",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-pipeline-operator": "^7.10.5",
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@umijs/babel-preset-umi": "^3.3.2",
"antd": "^4.8.0",
"antd-mobile": "^5.3.1",
"babel-eslint": "^8.2.2",
"babel-plugin-import": "^1.13.1",
"dumi": "1.0.34",
"eslint": "^7.6.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"lerna": "^3.22.1"
}
}