forked from alibaba/lowcode-materials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.24 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.24 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
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
{
"name": "@alilc/lowcode-materials",
"version": "1.0.2",
"description": "Fusion Next for LowCode",
"scripts": {
"start": "build-scripts start --type=dev",
"compile": "build-scripts build",
"preview": "build-scripts start --type=preview",
"build": "npm run compile",
"dev": "start-storybook -p 9001",
"lowcode:dev": "build-scripts start --config ./build.lowcode.js",
"lowcode:build": "build-scripts build --config ./build.lowcode.js",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,less,md,json}'",
"f2elint-scan": "f2elint scan",
"f2elint-fix": "f2elint fix",
"prepublishOnly": "npm run build && npm run lowcode:build"
},
"files": [
"es/",
"lib/",
"dist/",
"build/",
"lowcode/"
],
"lint-staged": {
"*.ts?(x)": [
"prettier --parser=typescript --write"
],
"*.{js,jsx,less,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@alib/build-scripts": "^0.1.23",
"@alifd/build-plugin-lowcode": "^0.1.17-beta.4",
"@alifd/next": "^1.20.0",
"@alifd/theme-2": "^0.4.4",
"@storybook/addon-docs": "^6.3.12",
"@storybook/addon-essentials": "^6.3.12",
"@storybook/react": "^6.3.5",
"build-plugin-component": "^1.3.3",
"build-plugin-component-multiple": "^1.0.0-beta.45",
"build-plugin-fusion": "^0.1.3",
"build-plugin-moment-locales": "^0.1.0",
"f2elint": "^2.2.0",
"lint-staged": "^10.5.3",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^17.0.1",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"typescript": "^3.9.3",
"yorkie": "^2.0.0"
},
"authors": [
{
"name": "金禅"
},
{
"name": "荣彬"
},
{
"name": "屹凡"
},
{
"name": "启剑"
},
{
"name": "春希"
},
{
"name": "度城"
},
{
"name": "梧忌"
}
],
"dependencies": {
"@alifd/next": "^1.24.14",
"@types/react": "^17.0.39"
},
"componentConfig": {
"materialSchema": "https://alifd.alicdn.com/npm/@alilc/lowcode-materials@1.0.2/build/lowcode/assets-prod.json"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "f2elint commit-file-scan",
"commit-msg": "f2elint commit-msg-scan"
}
}
}