tdesign-vue-next-starter/package.json

93 lines
3.0 KiB
JSON
Raw Normal View History

2021-11-26 11:32:16 +08:00
{
"name": "@tencent/tdesign-vue-next-starter",
"version": "0.7.7",
2021-11-26 11:32:16 +08:00
"scripts": {
"dev:mock": "vite --open --mode mock",
"dev": "vite --open --mode development",
2022-03-11 15:54:17 +08:00
"dev:linux": "vite --mode development",
2021-11-26 11:32:16 +08:00
"build:test": "vite build --mode test",
"build": "vue-tsc --noEmit && vite build --mode release",
"build:site": "vue-tsc --noEmit && vite build --mode site",
"preview": "vite preview",
2021-11-26 11:32:16 +08:00
"lint": "eslint --ext .vue,.js,.jsx,.ts,.tsx ./ --max-warnings 0",
"lint:fix": "eslint --ext .vue,.js,jsx,.ts,.tsx ./ --max-warnings 0 --fix",
"stylelint": "stylelint src/**/*.{html,vue,sass,less}",
"stylelint:fix": "stylelint --fix src/**/*.{html,vue,vss,sass,less}",
"prepare": "husky install",
"site:preview": "npm run build && cp -r dist _site",
2022-04-11 14:26:44 +08:00
"test": "echo \"no test specified,work in process\"",
"test:coverage": "echo \"no test:coverage specified,work in process\""
2021-11-26 11:32:16 +08:00
},
"dependencies": {
"axios": "^1.4.0",
"dayjs": "^1.11.8",
"echarts": "5.1.2",
"lodash": "^4.17.21",
2021-11-26 11:32:16 +08:00
"nprogress": "^0.2.0",
"pinia": "^2.0.33",
"pinia-plugin-persistedstate": "^3.1.0",
"qrcode.vue": "^3.3.4",
"qs": "^6.11.1",
2023-05-23 13:04:45 +08:00
"tdesign-icons-vue-next": "^0.1.11",
"tdesign-vue-next": "^1.3.8",
2023-05-23 13:04:45 +08:00
"tvision-color": "^1.6.0",
"vue": "^3.3.4",
2022-04-27 02:06:14 +08:00
"vue-clipboard3": "^2.0.0",
"vue-router": "~4.2.2"
2021-11-26 11:32:16 +08:00
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/echarts": "^4.9.16",
"@types/lodash": "^4.14.191",
"@types/nprogress": "^0.2.0",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"@vitejs/plugin-vue": "^4.2.3 ",
"@vitejs/plugin-vue-jsx": "^3.0.1 ",
"@vue/compiler-sfc": "^3.2.47",
"@vue/eslint-config-typescript": "^11.0.2",
2021-11-26 11:32:16 +08:00
"commitizen": "^4.2.4",
2022-04-06 17:27:30 +08:00
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.30.0",
2021-11-26 11:32:16 +08:00
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.8.0",
2022-04-30 23:16:41 +08:00
"eslint-plugin-vue-scoped-css": "^2.2.0",
"husky": "^8.0.2",
"less": "^4.1.3",
"lint-staged": "^13.1.0",
2021-11-26 11:32:16 +08:00
"mockjs": "^1.1.0",
2023-02-01 15:37:47 +08:00
"postcss-html": "^1.5.0",
"postcss-less": "^6.0.0",
"prettier": "^2.8.1",
"stylelint": "~14.9.1",
"stylelint-config-prettier": "~9.0.4",
"stylelint-less": "1.0.6",
"stylelint-order": "~6.0.1",
"typescript": "~5.1.6",
"vite": "^4.3.9",
2021-11-26 11:32:16 +08:00
"vite-plugin-mock": "^2.9.6",
"vite-svg-loader": "^4.0.0",
"vue-tsc": "^1.8.2"
2021-11-26 11:32:16 +08:00
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"prettier --write",
"npm run lint:fix"
2021-11-26 11:32:16 +08:00
],
"*.{html,vue,vss,sass,less}": [
"npm run stylelint:fix"
2021-11-26 11:32:16 +08:00
]
}
2022-02-16 20:22:02 +08:00
}