-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.55 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "form-generator-iview",
"version": "1.0.4",
"title": "formGeneratorIView",
"description": "A form generator with json schema based on iview ui",
"keywords": [
"iview",
"vue",
"vue.js",
"component",
"components",
"ui",
"framework",
"form-generator",
"form-generator-iview"
],
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"dev": "webpack-dev-server --color --progress --config build/webpack.website.dev.config.js",
"build-website": "webpack --color --progress --config build/webpack.website.prod.config.js && rm -rf gh-pages/ && cp -r docs/ gh-pages && mv website/dist/* gh-pages/",
"build-dev": "webpack --color --progress --config build/webpack.dist.dev.config.js",
"build-prod": "webpack --color --progress --config build/webpack.dist.prod.config.js",
"build": "npm run build-dev && npm run build-prod",
"lint": "eslint --fix --ext .js,.vue,.json src --fix --ext .json docs/website-data-api",
"deploy": "fis3 release --root=./website/dist/ --file=./deploy-baidu/config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JSON-Drived-Configurable-Platform/form-generator-iview"
},
"author": "[email protected], [email protected], Tobin1990",
"license": "MIT",
"bugs": {
"url": "https://github.com/JSON-Drived-Configurable-Platform/form-generator-iview"
},
"peerDependencies": {
"view-design": "^4.3.1",
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^2.0.1",
"clipboard": "^2.0.4",
"core-js": "2",
"css-loader": "^2.1.1",
"data-vis-iview": "^1.0.0-beta",
"eslint": "^5.16.0",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^3.0.1",
"highlightjs": "^9.12.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"pre-commit": "^1.2.2",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"view-design": "^4.3.1",
"vue": "^2.6.10",
"vue-i18n": "^8.14.0",
"vue-loader": "^15.7.0",
"vue-router": "^3.0.6",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.1",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
},
"engines": {
"node": ">=8.9.1",
"npm": ">=5.5.1",
"yarn": ">=1.3.2"
},
"browserslist": [
"last 3 Chrome versions",
"last 3 Firefox versions",
"Safari >= 10",
"Explorer >= 11",
"Edge >= 12",
"iOS >= 10",
"Android >= 6"
],
"dependencies": {
"async-validator": "^3.2.4",
"axios": "^0.18.1",
"v-click-outside": "^2.1.3"
},
"pre-commit": [
"lint"
]
}