forked from alibaba/schema-plugin-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 2.3 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
{
"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",
"publish": "npm run prepare && lerna publish",
"prepare": "npm run lint && npm run build",
"prepublish-back": "npm run lint && npm run build",
"build": "lerna exec -- babel --root-mode upward src --out-dir lib --extensions \".ts,.tsx,.js,.jsx\"",
"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"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@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.10.4",
"@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.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"antd": "^4.5.4",
"babel-eslint": "^8.2.2",
"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"
},
"dependencies": {}
}