-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.14 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
{
"name": "WYSIWYG",
"version": "0.0.1",
"main": "private",
"scripts": {
"updates:component": "git submodule update --remote",
"dev": "vite",
"preview": "vite preview",
"build:oldSchool": "NODE_ENV=production webpack --config config/webpack.prod.config.js",
"lint": "eslint --fix --ext .ts,.vue src",
"lint:fix": "eslint --fix src/App.vue",
"prepare": "husky install",
"commit": "git-cz",
"testCustom": "echo ddd",
"build": "vue-tsc --noEmit --skipLibCheck && vite build"
},
"keywords": [],
"author": "lvfangren",
"license": "MIT",
"description": "",
"dependencies": {
"axios": "^0.26.1",
"vue": "^3.2.25"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.14.7",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.2.0",
"@fullhuman/postcss-purgecss": "^4.1.3",
"@typescript-eslint/parser": "^5.3.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/compiler-sfc": "^3.2.31",
"autoprefixer": "^10.3.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"commitizen": "^4.2.4",
"css-loader": "^6.0.0",
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.14.0",
"husky": "^7.0.0",
"less": "^4.1.2",
"lint-staged": "^11.1.2",
"postcss": "^8.3.5",
"postcss-loader": "^6.1.1",
"rollup-plugin-visualizer": "^5.6.0",
"style-loader": "^3.1.0",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"unplugin-vue-components": "^0.18.0",
"vite": "^2.8.0",
"vue-eslint-parser": "^7.9.0",
"vue-loader": "^17.0.0",
"vue-tsc": "^0.33.5"
},
"engines": {
"node": ">= 12.13.0",
"npm": ">= 6.12.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"commit-msg": "commitlint -E $HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint:fix"
}
}