cista-storage/cista-front/package.json

59 lines
1.6 KiB
JSON
Raw Normal View History

2023-10-21 20:30:47 +01:00
{
"name": "front",
2023-10-21 20:30:47 +01:00
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
2023-10-21 20:30:47 +01:00
"build-only": "vite build",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
2023-10-21 20:30:47 +01:00
},
"dependencies": {
"@vueuse/core": "^10.4.1",
2023-10-27 02:33:54 +01:00
"esbuild": "^0.19.5",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"pinia": "^2.1.6",
"pinia-plugin-persistedstate": "^3.2.0",
"unplugin-vue-components": "^0.25.2",
"vite-plugin-rewrite-all": "^1.0.1",
"vite-svg-loader": "^4.0.0",
2023-10-21 20:30:47 +01:00
"vue": "^3.3.4",
"vue-router": "^4.2.4"
2023-10-21 20:30:47 +01:00
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
2023-10-21 20:30:47 +01:00
"@tsconfig/node18": "^18.2.2",
"@types/jsdom": "^21.1.3",
"@types/lodash-es": "^4.17.10",
"@types/node": "^18.17.17",
"@vitejs/plugin-vue": "^4.3.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/test-utils": "^2.4.1",
2023-10-21 20:30:47 +01:00
"@vue/tsconfig": "^0.4.0",
2023-11-03 20:07:05 +00:00
"babel-eslint": "^10.1.0",
"eslint": "^8.52.0",
"eslint-plugin-vue": "^9.18.1",
"jsdom": "^22.1.0",
"npm-run-all2": "^6.0.6",
"prettier": "^3.0.3",
2023-10-21 20:30:47 +01:00
"typescript": "~5.2.0",
"vite": "^4.4.9",
"vitest": "^0.34.4",
"vue-tsc": "^1.8.11"
2023-11-03 20:07:05 +00:00
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"endOfLine": "lf",
"printWidth": 88
2023-10-21 20:30:47 +01:00
}
}