1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2026-06-03 16:35:37 +02:00
Files
woodpecker/web/package.json
T

81 lines
2.1 KiB
JSON
Raw Normal View History

2019-11-12 14:27:39 +01:00
{
2021-11-03 17:40:31 +01:00
"name": "woodpecker-ci",
"author": "Woodpecker CI",
"version": "0.0.0",
"license": "Apache-2.0",
"type": "module",
2021-11-03 17:40:31 +01:00
"engines": {
2024-11-19 19:51:49 +01:00
"node": ">=20"
2019-11-12 14:27:39 +01:00
},
2021-11-03 17:40:31 +01:00
"scripts": {
"start": "vite",
"build": "vite build --base=/BASE_PATH",
2021-11-03 17:40:31 +01:00
"serve": "vite preview",
"lint": "eslint --max-warnings 0 .",
2023-08-03 23:11:52 +02:00
"format": "prettier --write .",
"format:check": "prettier -c .",
2021-11-03 17:40:31 +01:00
"typecheck": "vue-tsc --noEmit",
2024-04-29 21:33:45 +02:00
"test": "vitest"
2019-11-12 14:27:39 +01:00
},
"dependencies": {
"@kyvg/vue3-notification": "^3.4.1",
2024-07-17 17:13:56 +02:00
"@mdi/js": "^7.4.47",
"@tailwindcss/postcss": "4.0.0",
2025-01-07 08:52:44 +01:00
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "4.0.0",
2025-01-07 08:52:44 +01:00
"@vueuse/core": "^12.3.0",
2024-01-20 18:27:36 +01:00
"ansi_up": "^6.0.2",
2025-01-07 08:52:44 +01:00
"autoprefixer": "^10.4.20",
"dompurify": "^3.2.3",
"fuse.js": "^7.0.0",
"js-base64": "^3.7.7",
"lodash": "^4.17.21",
2025-01-07 08:52:44 +01:00
"marked": "^15.0.5",
"node-emoji": "^2.2.0",
"pinia": "^2.3.0",
2025-01-07 08:52:44 +01:00
"postcss": "^8.4.49",
"prettier-plugin-tailwindcss": "^0.6.9",
"prismjs": "^1.29.0",
2024-10-05 07:14:16 +02:00
"semver": "^7.6.3",
2025-01-07 08:52:44 +01:00
"simple-icons": "^14.1.0",
"tailwindcss": "^3.4.17",
"vue": "^3.5.13",
2025-01-07 08:52:44 +01:00
"vue-i18n": "^11.0.1",
"vue-router": "^4.5.0"
2019-11-12 14:27:39 +01:00
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@intlify/eslint-plugin-vue-i18n": "3.2.0",
2025-01-07 08:52:44 +01:00
"@intlify/unplugin-vue-i18n": "^6.0.3",
"@types/eslint__js": "^8.42.3",
2025-01-07 08:52:44 +01:00
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.5",
"@types/prismjs": "^1.26.5",
"@types/semver": "^7.5.8",
"@types/tinycolor2": "^1.4.6",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.17.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-vue-scoped-css": "^2.9.0",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"tinycolor2": "^1.6.0",
2025-01-07 08:52:44 +01:00
"ts-node": "^10.9.2",
"typescript": "5.7.3",
2025-01-07 08:52:44 +01:00
"vite": "^6.0.7",
"vite-plugin-prismjs": "^0.0.11",
2024-01-20 18:27:36 +01:00
"vite-svg-loader": "^5.1.0",
"vitest": "^3.0.0",
2025-01-07 08:52:44 +01:00
"vue-tsc": "^2.2.0"
2023-07-03 07:52:25 +02:00
},
"pnpm": {
"overrides": {
"semver@<7.5.2": ">=7.5.2"
}
2019-11-12 14:27:39 +01:00
}
}