-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.33 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.33 KB
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
{
"name": "one-pass-manager",
"version": "0.0.0",
"description": "onePass manager web portal",
"author": "yx",
"scripts": {
"lint": "eslint --ext .ts,.tsx,.vue src --fix && stylelint src/**/*.{css,scss,vue} --fix",
"predo": "npm run lint && vue-tsc --noEmit",
"prepare": "husky install",
"dev": "vite",
"build:dev": "npm run predo && vite build --mode development",
"build:test": "npm run predo && vite build --mode test",
"build": "npm run predo && vite build",
"serve": "vite preview",
"release": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"@element-plus/icons": "0.0.11",
"axios": "^0.24.0",
"change-case": "^4.1.2",
"clipboard": "^2.0.8",
"element-plus": "^1.2.0-beta.3",
"qs": "^6.10.1",
"roy-type-assert": "^0.1.5",
"vue": "^3.0.5",
"vue-router": "^4.0.3"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^15.6.1",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"@vitejs/plugin-vue": "^1.2.2",
"@vitejs/plugin-vue-jsx": "^1.1.4",
"@vue/compiler-sfc": "^3.0.5",
"autoprefixer": "^10.2.6",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.10.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"postcss": "^8.3.0",
"prettier": "^2.3.0",
"rollup-plugin-visualizer": "^5.5.0",
"sass": "^1.34.0",
"stylelint": "^13.13.1",
"stylelint-config-recommended": "^5.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.19.0",
"tailwindcss": "^2.1.2",
"typescript": "^4.1.3",
"unplugin-element-plus": "^0.1.3",
"vite": "^2.3.3",
"vite-plugin-import": "^0.3.0",
"vue-tsc": "^0.29.5"
},
"lint-staged": {
"src/**/*.{ts,tsx,vue}": "eslint --fix",
"src/**/*.{css,scss,vue}": "stylelint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}