Some checks failed
Testing / test (push) Failing after 50s
modified: .forgejo/workflows/test.yml modified: package.json
59 lines
1.7 KiB
JSON
Executable file
59 lines
1.7 KiB
JSON
Executable file
{
|
|
"name": "hub-site",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "run-p type-check \"build-only {@}\" --",
|
|
"preview": "vite preview",
|
|
"test:unit": "vitest",
|
|
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
|
|
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
|
|
"build-only": "vite build",
|
|
"type-check": "vue-tsc --build --force",
|
|
"lint": "eslint . --fix",
|
|
"format": "prettier --write src/",
|
|
"start": "npm run dev --host"
|
|
},
|
|
"dependencies": {
|
|
"@tsparticles/slim": "^3.5.0",
|
|
"@tsparticles/vue3": "^3.0.1",
|
|
"axios": "^1.7.7",
|
|
"bcrypt": "^5.1.1",
|
|
"express": "^4.21.1",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"pg": "^8.13.1",
|
|
"pinia": "^2.2.6",
|
|
"vue": "^3.5.12",
|
|
"vue-router": "^4.4.5"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node22": "^22.0.0",
|
|
"@types/jsdom": "^21.1.7",
|
|
"@types/node": "^22.9.0",
|
|
"@vitejs/plugin-vue": "^5.1.4",
|
|
"@vitest/eslint-plugin": "1.1.7",
|
|
"@vue/eslint-config-prettier": "^10.1.0",
|
|
"@vue/eslint-config-typescript": "^14.1.3",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"@vue/tsconfig": "^0.5.1",
|
|
"autoprefixer": "^10.4.20",
|
|
"concurrently": "^9.1.0",
|
|
"cypress": "^13.15.1",
|
|
"eslint": "^9.14.0",
|
|
"eslint-plugin-cypress": "^4.1.0",
|
|
"eslint-plugin-vue": "^9.30.0",
|
|
"jsdom": "^25.0.1",
|
|
"npm-run-all2": "^7.0.1",
|
|
"postcss": "^8.4.49",
|
|
"prettier": "^3.3.3",
|
|
"start-server-and-test": "^2.0.8",
|
|
"tailwindcss": "^3.4.15",
|
|
"typescript": "~5.6.3",
|
|
"vite": "^5.4.10",
|
|
"vite-plugin-vue-devtools": "^7.5.4",
|
|
"vitest": "^2.1.4",
|
|
"vue-tsc": "^2.1.10"
|
|
}
|
|
}
|