forked from onetimesecret/onetimesecret
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "onetimesecret",
"version": "0.18.4",
"description": "",
"type": "module",
"scripts": {
"build-only:local": "vite build --config vite.config.local.ts",
"build-only": "vite build",
"build:local": "pnpm run type-check && pnpm run build-only:local",
"build": "pnpm run type-check && pnpm run build-only",
"clean": "rimraf public/web/dist",
"dev:local": "vite --config vite.config.local.ts --host",
"dev": "vite --host",
"docker:build": "docker build --build-arg=VERSION=$npm_package_version -t onetimesecret .",
"docker:image:metadata:latest": "docker inspect $(docker images -q | head -n 1) | jq '.[0].Config.Labels'",
"docker:run": "docker run --rm -it onetimesecret",
"lint": "eslint",
"optimize:local": "vite optimize --config vite.config.local.ts",
"optimize": "vite optimize",
"oursync": "rsync -av --ignore-existing public/web/ /var/www/public/",
"playwright:update": "pnpm install --save-dev @playwright/test@latest && pnpm exec playwright install --with-deps",
"playwright": "playwright test",
"podman:build": "podman build --build-arg=VERSION=$npm_package_version -t onetimesecret .",
"podman:image:metadata:latest": "podman inspect $(podman images -q | head -n 1) | jq '.[0].Config.Labels'",
"podman:run": "podman run --rm -it onetimesecret",
"preview:local": "vite preview --config vite.config.local.ts",
"preview": "vite preview",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:watch:coverage": "vitest --coverage",
"test:watch:ui": "vitest --ui",
"type-check": "vue-tsc --noEmit"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@headlessui/vue": "^1.7.23",
"@intlify/core": "^9.14.1",
"@types/dompurify": "^3.0.5",
"@vueuse/integrations": "^11.1.0",
"altcha": "^1.0.0",
"axios": "^1.7.7",
"dompurify": "^3.1.7",
"focus-trap": "^7.6.0",
"pinia": "^2.2.4",
"pnpm": "^9.12.0",
"stripe": "^17.1.0",
"vue": "^3.5.11",
"vue-i18n": "10.0.4"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@iconify-json/heroicons": "^1.2.0",
"@iconify-json/mdi": "^1.2.0",
"@iconify/vue": "^4.1.2",
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@pinia/testing": "^0.1.6",
"@playwright/test": "^1.47.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tsconfig/node22": "^22.0.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-vue": "^5.1.4",
"@vitest/coverage-v8": "^2.1.2",
"@vue/runtime-core": "^3.5.11",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^11.1.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.28.0",
"globals": "^15.10.0",
"jsdom": "^25.0.1",
"playwright": "^1.48.0",
"postcss": "^8.4.47",
"rimraf": "^6.0.1",
"rollup": "^4.24.0",
"tailwindcss": "^3.4.13",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.10.0",
"unplugin-vue-markdown": "^0.26.2",
"vite": "^5.4.8",
"vite-plugin-html": "^3.2.2",
"vitest": "^2.1.2",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.6"
}
}