-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
85 lines (85 loc) · 2.49 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
{
"name": "@dgiot/dgiot-konva-editior",
"version": "0.1.0",
"private": false,
"license": "MIT",
"description": "dgiot-konva-editior",
"author": "h7ml(h7ml@qq.com)",
"homepage": "https://github.com/dgiot/dgiot-konva-editior.git",
"scripts": {
"dev": "cross-env NODE_ENV='development' && vue-cli-service serve",
"build": "cross-env NODE_ENV='production' && vue-cli-service build",
"lint": "cross-env NODE_ENV='development' && vue-cli-service lint",
"lint:style": "cross-env NODE_ENV='development' && stylelint **/*.{vue,scss} --fix",
"use:pmpm": "npm i -g pnpm --registry=https://registry.npm.taobao.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dgiot/dgiot-konva-editior.git"
},
"bugs": {
"url": "https://github.com/dgiot/dgiot-konva-editior/issues"
},
"scripts-bak": {
"ncu-u": "ncu -u"
},
"dependencies": {
"core-js": "3.18.3",
"element-ui": "2.15.6",
"loadsh": "0.0.4",
"monaco-editor": "0.29.1",
"vue": "2.6.14",
"vue-monaco-editor": "0.0.19",
"vue-router": "3.5.2",
"vuex": "3.6.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.14",
"@vue/cli-plugin-eslint": "^4.5.14",
"@vue/cli-plugin-router": "^4.5.14",
"@vue/cli-plugin-vuex": "^4.5.14",
"@vue/cli-service": "^4.5.14",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"chalk": "4.1.2",
"commitizen": "4.2.4",
"compression-webpack-plugin": "^6.1.1",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-vue": "^6.2.2",
"husky": "7.0.2",
"konva": "8.2.2",
"lint-staged": "11.2.3",
"prettier": "2.4.1",
"pushstate-server": "3.1.0",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"stylelint": "13.13.1",
"stylelint-config-standard": "22.0.0",
"stylelint-webpack-plugin": "3.0.1",
"vue-template-compiler": "2.6.14",
"webpack": "^4.44.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "FORCE_COLOR=1 node scripts/verify-commit.js"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,jsx,vue}": [
"prettier --tab-width 2 --write",
"vue-cli-service lint --fix"
]
}
}