yxuse 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +99 -0
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
空天院综合管理前端项目
|
package/package.json
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "yxuse",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"keywords":["yx"],
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "node ./build/log.ts dev && vite",
|
|
8
|
+
"build": "node ./build/log.ts build && node ./build/version.ts && vite build --mode production && node ./build/log.ts end",
|
|
9
|
+
"preview": "vite preview",
|
|
10
|
+
"build-only": "vite build",
|
|
11
|
+
"type-check": "vue-tsc --noEmit",
|
|
12
|
+
"lint:eslint": "eslint --fix --ext .js,.ts,.vue ./src",
|
|
13
|
+
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,ts,json,tsx,css,less,scss,vue,html,md}\"",
|
|
14
|
+
"lint:stylelint": "stylelint --cache --fix \"**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
|
|
15
|
+
"prepare": "husky install",
|
|
16
|
+
"lint:lint-staged": "lint-staged",
|
|
17
|
+
"commit": "git pull && git add -A && git-cz && git push",
|
|
18
|
+
"tsc": "tsc --noEmit --watch"
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist"
|
|
22
|
+
],
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"axios": "^1.3.3",
|
|
25
|
+
"element-plus": "^2.2.32",
|
|
26
|
+
"file-saver": "^2.0.5",
|
|
27
|
+
"mqtt": "^4.0.1",
|
|
28
|
+
"nprogress": "^0.2.0",
|
|
29
|
+
"pinia": "^2.0.28",
|
|
30
|
+
"qs": "^6.11.0",
|
|
31
|
+
"sortablejs": "^1.15.0",
|
|
32
|
+
"vue": "^3.2.45",
|
|
33
|
+
"vue-router": "^4.1.6",
|
|
34
|
+
"xlsx": "^0.18.5"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@commitlint/cli": "^17.5.1",
|
|
38
|
+
"@commitlint/config-conventional": "^17.4.4",
|
|
39
|
+
"@rushstack/eslint-patch": "^1.1.4",
|
|
40
|
+
"@types/node": "^18.11.12",
|
|
41
|
+
"@types/nprogress": "^0.2.0",
|
|
42
|
+
"@vitejs/plugin-vue": "^4.0.0",
|
|
43
|
+
"@vitejs/plugin-vue-jsx": "^3.0.0",
|
|
44
|
+
"@vue/eslint-config-prettier": "^7.0.0",
|
|
45
|
+
"@vue/eslint-config-typescript": "^11.0.0",
|
|
46
|
+
"@vue/tsconfig": "^0.1.3",
|
|
47
|
+
"autoprefixer": "^10.4.13",
|
|
48
|
+
"commitizen": "^4.3.0",
|
|
49
|
+
"cssnano": "^5.1.15",
|
|
50
|
+
"cz-git": "^1.6.1",
|
|
51
|
+
"eslint": "^8.22.0",
|
|
52
|
+
"eslint-plugin-vue": "^9.3.0",
|
|
53
|
+
"figlet": "^1.6.0",
|
|
54
|
+
"husky": "^8.0.3",
|
|
55
|
+
"lint-staged": "^13.2.0",
|
|
56
|
+
"npm-run-all": "^4.1.5",
|
|
57
|
+
"pinia-plugin-persistedstate": "^3.1.0",
|
|
58
|
+
"postcss": "^8.4.21",
|
|
59
|
+
"postcss-html": "^1.5.0",
|
|
60
|
+
"postcss-import": "^15.1.0",
|
|
61
|
+
"postcss-nesting": "^11.2.2",
|
|
62
|
+
"postcss-preset-env": "^8.4.2",
|
|
63
|
+
"postcss-px-to-viewport": "^1.1.1",
|
|
64
|
+
"postcss-scss": "^4.0.6",
|
|
65
|
+
"prettier": "^2.7.1",
|
|
66
|
+
"rollup-plugin-visualizer": "^5.9.2",
|
|
67
|
+
"sass": "^1.58.3",
|
|
68
|
+
"stylelint": "^15.6.0",
|
|
69
|
+
"stylelint-config-prettier": "^9.0.3",
|
|
70
|
+
"stylelint-config-recess-order": "^4.0.0",
|
|
71
|
+
"stylelint-config-recommended-scss": "^11.0.0",
|
|
72
|
+
"stylelint-config-recommended-vue": "^1.4.0",
|
|
73
|
+
"stylelint-config-standard": "^33.0.0",
|
|
74
|
+
"stylelint-config-standard-scss": "^9.0.0",
|
|
75
|
+
"tailwindcss": "^3.2.7",
|
|
76
|
+
"typescript": "~4.7.4",
|
|
77
|
+
"unplugin-auto-import": "^0.14.3",
|
|
78
|
+
"unplugin-vue-components": "^0.24.0",
|
|
79
|
+
"vite": "^4.3.9",
|
|
80
|
+
"vite-plugin-compression": "^0.5.1",
|
|
81
|
+
"vite-plugin-node-stdlib-browser": "^0.2.1",
|
|
82
|
+
"vite-plugin-remove-console": "^2.1.0",
|
|
83
|
+
"vite-svg-loader": "^4.0.0",
|
|
84
|
+
"vue-tsc": "^1.0.12"
|
|
85
|
+
},
|
|
86
|
+
"pnpm": {
|
|
87
|
+
"peerDependencyRules": {
|
|
88
|
+
"ignoreMissing": [
|
|
89
|
+
"rollup",
|
|
90
|
+
"webpack"
|
|
91
|
+
]
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"config": {
|
|
95
|
+
"commitizen": {
|
|
96
|
+
"path": "node_modules/cz-git"
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|