-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.14 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
{
"name": "lowcode-vue-material-demo",
"version": "0.1.0",
"description": "lowcode-vue-material-demo",
"main": "lib/index.js",
"module": "es/index.js",
"typings": "types/index.d.ts",
"files": [
"build",
"dist",
"lib",
"es",
"types"
],
"scripts": {
"start": "build-scripts start",
"build": "build-scripts build",
"lowcode:dev": "build-scripts start --config ./build.lowcode.js",
"lowcode:build": "build-scripts build --config ./build.lowcode.js",
"f2elint-scan": "f2elint scan",
"f2elint-fix": "f2elint fix",
"prepublishOnly": "npm run build && npm run lowcode:build"
},
"directories": {
"test": "test"
},
"keywords": [
"Fusion"
],
"author": "fusion-team",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "f2elint commit-file-scan",
"commit-msg": "f2elint commit-msg-scan"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,vue}": "f2elint exec eslint",
"**/*.{css,scss,less,acss}": "f2elint exec stylelint"
},
"peerDependencies": {
"moment": "latest",
"react": "^16.x",
"react-dom": "^16.x"
},
"devDependencies": {
"@alib/build-scripts": "^0.1.3",
"@alifd/build-plugin-lowcode": "^0.3.0",
"@alifd/theme-2": "^0.4.0",
"@storybook/addon-actions": "^6.3.1",
"@storybook/addon-docs": "^6.3.4",
"@storybook/addon-essentials": "^6.3.0",
"@storybook/addon-storysource": "^6.3.1",
"@storybook/react": "^6.3.5",
"@storybook/source-loader": "^6.3.1",
"@types/react": "^16.14.24",
"@types/react-dom": "^16.9.4",
"build-plugin-component-multiple": "^1.0.0-beta.5",
"build-plugin-fusion": "^0.1.0",
"f2elint": "^1.2.0"
},
"dependencies": {
"@alifd/next": "^1.25.27",
"element-ui": "^2.15.8",
"prop-types": "^15.5.8",
"react": "^16.x",
"react-dom": "^16.x",
"vue": "2.6.14",
"vuereact-combined": "^1.2.5"
},
"acceptDependencies": {
"webpack": "^4.46.x"
},
"resolutions": {
"webpack": "^4.46.x"
},
"componentConfig": {
"isComponentLibrary": true,
"materialSchema": "https://unpkg.com/[email protected]/build/lowcode/assets-prod.json"
}
}