update project config to match official create vue recommendations
This commit is contained in:
23
package.json
23
package.json
@@ -1,12 +1,16 @@
|
||||
{
|
||||
"name": "contexted-v3",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"version": "0.1.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vue-tsc && vite build",
|
||||
"preview": "vite preview"
|
||||
"build": "run-p type-check build-only",
|
||||
"preview": "vite preview",
|
||||
"build-only": "vite build",
|
||||
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false",
|
||||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
|
||||
"format": "prettier --write src/"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ckeditor/ckeditor5-autoformat": "^37.1.0",
|
||||
@@ -33,15 +37,24 @@
|
||||
"marked": "^4.3.0",
|
||||
"shortid": "^2.2.16",
|
||||
"turndown": "^7.1.2",
|
||||
"vue": "^3.3.1"
|
||||
"vue": "^3.3.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rushstack/eslint-patch": "^1.2.0",
|
||||
"@tsconfig/node18": "^2.0.1",
|
||||
"@types/dompurify": "^3.0.2",
|
||||
"@types/lodash-es": "^4.17.7",
|
||||
"@types/node": "^20.2.1",
|
||||
"@types/shortid": "^0.0.29",
|
||||
"@types/turndown": "^5.0.1",
|
||||
"@vitejs/plugin-vue": "^4.2.2",
|
||||
"@vue/eslint-config-prettier": "^7.1.0",
|
||||
"@vue/eslint-config-typescript": "^11.0.3",
|
||||
"@vue/tsconfig": "^0.4.0",
|
||||
"autoprefixer": "^10.4.14",
|
||||
"eslint": "^8.40.0",
|
||||
"eslint-plugin-vue": "^9.13.0",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"postcss": "^8.4.23",
|
||||
"prettier": "^2.8.8",
|
||||
"prettier-plugin-tailwindcss": "^0.2.8",
|
||||
@@ -50,7 +63,7 @@
|
||||
"typescript": "^5.0.2",
|
||||
"unplugin-auto-import": "^0.15.3",
|
||||
"unplugin-vue-components": "^0.24.1",
|
||||
"vite": "^4.3.5",
|
||||
"vite": "^4.3.8",
|
||||
"vue-tsc": "^1.6.4"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user