-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.65 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
{
"name": "lowcode-rgl-demo",
"version": "0.1.0",
"description": "lowcode-rgl-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",
"@types/react": "^16.14.24",
"@types/react-dom": "^16.9.4"
},
"dependencies": {
"lodash": "^4.17.21",
"react": "^16.x",
"react-dom": "^16.x",
"react-grid-layout": "^1.3.4"
},
"acceptDependencies": {
"webpack": "^4.46.x"
},
"resolutions": {
"webpack": "^4.46.x"
},
"componentConfig": {
"isComponentLibrary": true,
"materialSchema": "https://unpkg.com/[email protected]/build/lowcode/assets-prod.json"
}
}