-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
1,056 additions
and
1,274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = crlf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = false | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = false | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,89 +1,88 @@ | ||
{ | ||
"name": "vue3-vite-alova-ts-vitest", | ||
"type": "module", | ||
"version": "0.0.1", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"dev": "vite --mode dev", | ||
"pro": "vite --mode pro", | ||
"build": "vue-tsc --noEmit && vite build --mode pro", | ||
"build:dev": "vue-tsc --noEmit && vite build --mode dev", | ||
"build:pro": "vue-tsc --noEmit && vite build --mode pro", | ||
"preview": "vite preview", | ||
"test": "vitest --mode dev", | ||
"typecheck": "vue-tsc --noEmit", | ||
"commit": "git add . && git-cz", | ||
"push": "git push", | ||
"prepare": "husky install", | ||
"lint": "eslint .", | ||
"fix": "eslint src/**/*.* --fix", | ||
"style": "stylelint \"src/**/*.(vue|scss|css)\" --fix", | ||
"up": "taze major -I" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-emoji" | ||
} | ||
}, | ||
"dependencies": { | ||
"@vueuse/core": "^10.5.0", | ||
"alova": "^2.13.1", | ||
"vue": "^3.3.4", | ||
"vue-router": "^4.2.5" | ||
}, | ||
"devDependencies": { | ||
"@alova/adapter-axios": "^1.1.1", | ||
"@antfu/eslint-config": "1.0.0-beta.27", | ||
"@depazer/vite": "^1.0.0", | ||
"@iconify-json/carbon": "^1.1.21", | ||
"@iconify-json/mdi": "^1.1.54", | ||
"@iconify-json/streamline-emojis": "^1.1.4", | ||
"@ileostar/eslint-config": "^0.3.0", | ||
"@types/node": "^20.8.6", | ||
"@typescript-eslint/eslint-plugin": "^6.8.0", | ||
"@typescript-eslint/parser": "^6.8.0", | ||
"@unocss/eslint-config": "^0.56.5", | ||
"@unocss/eslint-plugin": "^0.56.5", | ||
"@unocss/preset-icons": "^0.56.5", | ||
"@vitejs/plugin-vue": "^4.4.0", | ||
"@vue-macros/volar": "^0.17.0", | ||
"@vue/test-utils": "^2.4.1", | ||
"commitizen": "^4.3.0", | ||
"cz-emoji": "1.3.2-canary.2", | ||
"dotenv": "^16.3.1", | ||
"eslint": "^8.51.0", | ||
"eslint-define-config": "^1.24.1", | ||
"husky": "^8.0.3", | ||
"jsdom": "^22.1.0", | ||
"lint": "^0.8.19", | ||
"lint-staged": "^15.0.1", | ||
"onu-ui": "1.0.14-beta.2", | ||
"pinia": "^2.1.7", | ||
"pinia-plugin-persistedstate": "^3.2.0", | ||
"postcss-html": "^1.5.0", | ||
"stylelint": "^15.11.0", | ||
"stylelint-config-standard-vue": "^1.0.0", | ||
"stylelint-order": "^6.0.3", | ||
"taze": "^0.11.4", | ||
"typescript": "^5.2.2", | ||
"unocss": "^0.56.5", | ||
"unplugin-auto-import": "^0.16.6", | ||
"unplugin-icons": "^0.17.0", | ||
"unplugin-vue-components": "^0.25.2", | ||
"unplugin-vue-macros": "^2.6.1", | ||
"vite": "^4.4.11", | ||
"vite-plugin-pages": "^0.31.0", | ||
"vite-plugin-restart": "^0.3.1", | ||
"vite-plugin-vue-devtools": "1.0.0-rc.5", | ||
"vite-plugin-vue-images": "^0.6.1", | ||
"vitest": "^0.34.6", | ||
"vue-tsc": "^1.8.19" | ||
}, | ||
"lint-staged": { | ||
"src/**/*.{js,vue,ts}": [ | ||
"eslint --fix", | ||
"git add ." | ||
] | ||
} | ||
} | ||
{ | ||
"name": "vue3-vite-alova-ts-vitest", | ||
"type": "module", | ||
"version": "0.0.1", | ||
"private": true, | ||
"packageManager": "[email protected]", | ||
"scripts": { | ||
"dev": "vite --mode dev", | ||
"pro": "vite --mode pro", | ||
"build": "vue-tsc --noEmit && vite build --mode pro", | ||
"build:dev": "vue-tsc --noEmit && vite build --mode dev", | ||
"build:pro": "vue-tsc --noEmit && vite build --mode pro", | ||
"preview": "vite preview", | ||
"test": "vitest --mode dev", | ||
"typecheck": "vue-tsc --noEmit", | ||
"commit": "git add . && git-cz", | ||
"push": "git push", | ||
"prepare": "husky install", | ||
"lint": "eslint .", | ||
"fix": "eslint src/**/*.* --fix", | ||
"style": "stylelint \"src/**/*.(vue|scss|css)\" --fix", | ||
"up": "taze major -I" | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "./node_modules/cz-emoji" | ||
} | ||
}, | ||
"dependencies": { | ||
"@vueuse/core": "^10.5.0", | ||
"alova": "^2.13.1", | ||
"vue": "^3.3.7", | ||
"vue-router": "^4.2.5" | ||
}, | ||
"devDependencies": { | ||
"@alova/adapter-axios": "^1.2.0", | ||
"@depazer/vite": "^1.0.0", | ||
"@iconify-json/carbon": "^1.1.21", | ||
"@iconify-json/mdi": "^1.1.55", | ||
"@iconify-json/streamline-emojis": "^1.1.4", | ||
"@ileostar/eslint-config": "^0.3.0", | ||
"@types/node": "^20.8.9", | ||
"@typescript-eslint/eslint-plugin": "^6.9.0", | ||
"@typescript-eslint/parser": "^6.9.0", | ||
"@unocss/eslint-config": "^0.57.1", | ||
"@unocss/eslint-plugin": "^0.57.1", | ||
"@unocss/preset-icons": "^0.57.1", | ||
"@vitejs/plugin-vue": "^4.4.0", | ||
"@vue-macros/volar": "^0.17.1", | ||
"@vue/test-utils": "^2.4.1", | ||
"commitizen": "^4.3.0", | ||
"cz-emoji": "1.3.2-canary.2", | ||
"dotenv": "^16.3.1", | ||
"eslint": "^8.52.0", | ||
"eslint-define-config": "^1.24.1", | ||
"husky": "^8.0.3", | ||
"jsdom": "^22.1.0", | ||
"lint": "^0.8.19", | ||
"lint-staged": "^15.0.2", | ||
"onu-ui": "1.0.14-beta.2", | ||
"pinia": "^2.1.7", | ||
"pinia-plugin-persistedstate": "^3.2.0", | ||
"postcss-html": "^1.5.0", | ||
"stylelint": "^15.11.0", | ||
"stylelint-config-standard-vue": "^1.0.0", | ||
"stylelint-order": "^6.0.3", | ||
"taze": "^0.12.0", | ||
"typescript": "^5.2.2", | ||
"unocss": "^0.57.1", | ||
"unplugin-auto-import": "^0.16.7", | ||
"unplugin-icons": "^0.17.1", | ||
"unplugin-vue-components": "^0.25.2", | ||
"unplugin-vue-macros": "^2.6.1", | ||
"vite": "^4.5.0", | ||
"vite-plugin-pages": "^0.31.0", | ||
"vite-plugin-restart": "^0.3.1", | ||
"vite-plugin-vue-devtools": "1.0.0-rc.5", | ||
"vite-plugin-vue-images": "^0.6.1", | ||
"vitest": "^0.34.6", | ||
"vue-tsc": "^1.8.22" | ||
}, | ||
"lint-staged": { | ||
"src/**/*.{js,vue,ts}": [ | ||
"eslint --fix", | ||
"git add ." | ||
] | ||
} | ||
} |
Oops, something went wrong.