You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
67 lines
1.6 KiB
{
|
|
"name": "wabAppLowCode",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite serve --mode development",
|
|
"build": "vue-tsc -b && vite build",
|
|
"build:prod": "vite build --mode production &&vue-tsc --noEmit",
|
|
"preview": "vite preview",
|
|
"lint:eslint": "eslint --fix --ext .ts,.js,.vue ./src ",
|
|
"lint:prettier": "prettier --write \"**/*.{js,cjs,ts,json,tsx,css,less,scss,vue,html,md}\"",
|
|
"lint:stylelint": "stylelint \"**/*.{css,scss,vue}\" --fix",
|
|
"lint:lint-staged": "lint-staged",
|
|
"commit": "git-cz"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "node_modules/cz-git"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,ts}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{cjs,json}": [
|
|
"prettier --write"
|
|
],
|
|
"*.{vue,html}": [
|
|
"eslint --fix",
|
|
"prettier --write",
|
|
"stylelint --fix"
|
|
],
|
|
"*.{scss,css}": [
|
|
"stylelint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.md": [
|
|
"prettier --write"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.8.3",
|
|
"element-plus": "^2.9.6",
|
|
"fast-glob": "^3.3.3",
|
|
"font-awesome": "^4.7.0",
|
|
"path": "^0.12.7",
|
|
"pinia": "^3.0.1",
|
|
"sass": "^1.85.1",
|
|
"scss": "^0.2.4",
|
|
"vite-plugin-svg-icons": "^2.0.1",
|
|
"vue": "^3.5.13",
|
|
"vue-router": "^4.0.13"
|
|
},
|
|
"devDependencies": {
|
|
"@iconify-json/carbon": "^1.2.8",
|
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
"@vue/tsconfig": "^0.7.0",
|
|
"typescript": "~5.7.2",
|
|
"unplugin-auto-import": "^19.1.1",
|
|
"unplugin-icons": "^22.1.0",
|
|
"unplugin-vue-components": "^28.4.1",
|
|
"vite": "^6.2.0",
|
|
"vue-tsc": "^2.2.4"
|
|
}
|
|
}
|
|
|