Claptrap-ui/package.json

65 lines
1.9 KiB
JSON
Raw Permalink Normal View History

2022-05-21 01:07:31 +02:00
{
"name": "claptrap-ui",
"version": "0.0.0",
"scripts": {
"serve": "vite preview",
"build": "vite build",
"test:unit": "vitest --environment jsdom",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"dev": "vite",
2022-05-24 23:04:35 +02:00
"postinstall": "husky install",
2022-07-04 11:58:21 +02:00
"postpublish": "pinst --enable",
2022-05-24 23:04:35 +02:00
"prepublishOnly": "pinst --disable",
2022-07-04 11:58:21 +02:00
"preview": "vite preview --port 5050",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false"
2022-05-21 01:07:31 +02:00
},
"dependencies": {
"@mdi/font": "7.4.47",
2023-12-14 14:08:53 +01:00
"@types/js-cookie": "3.0.6",
"@types/uuid": "10.0.0",
"axios": "1.7.2",
"jose": "5.6.3",
2023-12-14 14:08:53 +01:00
"js-cookie": "3.0.5",
"pinia": "2.1.7",
"pinia-plugin-persistedstate": "3.2.1",
2023-12-14 14:08:53 +01:00
"roboto-fontface": "^0.10.0",
"uuid": "10.0.0",
"vue": "3.4.31",
"vue-router": "4.4.0",
"vuetify": "3.6.12",
"webfontloader": "1.6.28"
2022-05-21 01:07:31 +02:00
},
"devDependencies": {
"@rushstack/eslint-patch": "1.10.3",
"@types/jsdom": "21.1.7",
"@types/node": "20.14.10",
"@types/webfontloader": "1.6.38",
"@vitejs/plugin-vue": "5.0.5",
"@vue/eslint-config-prettier": "9.0.0",
"@vue/eslint-config-typescript": "13.0.0",
"@vue/test-utils": "2.4.6",
"@vue/tsconfig": "0.5.1",
"eslint": "9.7.0",
"eslint-plugin-vue": "9.27.0",
"husky": "9.0.11",
"jsdom": "24.1.0",
"lint-staged": "15.2.7",
"pinst": "3.0.0",
"prettier": "3.3.3",
"sass": "1.77.8",
"sass-loader": "14.2.1",
"typescript": "5.5.3",
"vite": "5.3.3",
"vite-plugin-vuetify": "2.0.3",
"vitest": "2.0.2",
2023-12-14 14:08:53 +01:00
"vue-cli-plugin-vuetify": "2.5.8",
"vue-tsc": "2.0.26",
"webpack-plugin-vuetify": "3.0.3"
2022-05-24 23:04:35 +02:00
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts}": "eslint --cache --fix",
2022-07-04 11:36:31 +02:00
"*.{vue,js,jsx,cjs,mjs,ts,tsx,cts,mts,css,scss,md,yml,yaml,json}": "prettier --write"
2022-07-04 11:58:21 +02:00
},
2024-07-08 03:08:42 +02:00
"packageManager": "pnpm@9.5.0"
2022-05-21 01:07:31 +02:00
}