-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 2.2 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
{
"name": "lich-form-designer",
"version": "1.0.0",
"scripts": {
"serve": "npm run serve:example",
"serve:example": "vue-cli-service serve --mode example",
"build": "npm run build:example && npm run build:designer && npm run build:creator && npm run build:parser",
"build:example": "set NODE_ENV=production&& vue-cli-service build --mode example",
"lint": "vue-cli-service lint",
"build:designer":"vue-cli-service build --target lib --name lichFormDesigner --dest ./lib/designer ./src/index.js",
"build:creator": "vue-cli-service build --target lib --name lichFormCreator --dest ./lib/creator ./src/components/creator/index.vue",
"build:parser": "vue-cli-service build --target lib --name lichFormParser --dest ./lib/parser ./src/components/parser/index.vue",
"compileCore": "tsc --rootDir ./src/core --outDir ./src/lib & npm run lint --fix",
"compileCoreOnSave": "tsc --rootDir ./src/core --outDir ./src/lib --watch & npm run lint --fix ",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"clipboard": "^2.0.6",
"element-ui": "^2.13.2",
"throttle-debounce": "^2.1.0",
"vue": "^2.6.11",
"vue-router": "^3.2.0",
"vuedraggable": "^2.23.2"
},
"devDependencies": {
"@types/vuedraggable": "^2.23.1",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.1.2",
"core-js": "^3.6.5",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"node-sass": "^4.12.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.2",
"svg-sprite-loader": "^5.0.0",
"ts-loader": "^7.0.5",
"typescript": "^3.9.6",
"vue-template-compiler": "^2.6.11",
"webpack-node-externals": "^1.7.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"main": "lib/designer/lichFormDesigner.umd.js",
"module": "lib/designer/lichFormDesigner.common.js",
"typings": "types/index.d.ts"
}