2022-11-13 05:34:43 +00:00
|
|
|
{
|
2022-11-15 14:29:46 +00:00
|
|
|
"type": "module",
|
2022-11-17 21:32:03 +00:00
|
|
|
"private": true,
|
2022-11-13 05:34:43 +00:00
|
|
|
"packageManager": "pnpm@7.9.0",
|
2022-11-24 10:53:23 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"homepage": "https://elk.zone/",
|
2022-11-13 05:34:43 +00:00
|
|
|
"scripts": {
|
|
|
|
"build": "nuxi build",
|
2022-11-25 15:15:54 +00:00
|
|
|
"dev": "nuxi dev --port 5314",
|
2022-12-17 23:29:16 +00:00
|
|
|
"dev:pwa": "VITE_DEV_PWA=true nuxi dev --port 5314",
|
2022-11-29 09:43:01 +00:00
|
|
|
"dev:mocked": "nuxi dev --port 5314 --dotenv .env.mock",
|
2022-12-17 23:29:16 +00:00
|
|
|
"dev:mocked:pwa": "VITE_DEV_PWA=true nuxi dev --port 5314 --dotenv .env.mock",
|
|
|
|
"dev:mocked:pwa:ssl": "VITE_DEV_PWA=true nuxi dev --port 5314 --https --ssl-cert ./https-dev-config/localhost.crt --ssl-key ./https-dev-config/localhost.key --dotenv .env.mock",
|
2022-11-26 18:13:47 +00:00
|
|
|
"start": "PORT=5314 node .output/server/index.mjs",
|
2022-12-17 23:29:16 +00:00
|
|
|
"start:https": "PORT=5314 node ./https-dev-config/local-https-server.mjs",
|
2022-11-13 05:34:43 +00:00
|
|
|
"lint": "eslint .",
|
2022-12-13 14:03:30 +00:00
|
|
|
"typecheck": "nuxi typecheck",
|
2022-11-24 03:42:03 +00:00
|
|
|
"prepare": "esno scripts/prepare.ts",
|
2022-11-25 08:25:56 +00:00
|
|
|
"generate": "nuxi generate",
|
|
|
|
"test:unit": "vitest",
|
2022-12-17 23:29:16 +00:00
|
|
|
"test:typecheck": "vue-tsc --noEmit && vue-tsc --noEmit --project service-worker/tsconfig.json",
|
2022-11-28 20:21:32 +00:00
|
|
|
"test": "nr test:unit",
|
|
|
|
"postinstall": "nuxi prepare && simple-git-hooks"
|
2022-11-13 05:34:43 +00:00
|
|
|
},
|
2022-12-11 10:52:36 +00:00
|
|
|
"dependencies": {
|
2022-12-12 20:16:45 +00:00
|
|
|
"@fnando/sparkline": "^0.3.10",
|
2022-12-20 13:25:39 +00:00
|
|
|
"@tiptap/extension-character-count": "2.0.0-beta.204",
|
|
|
|
"@tiptap/extension-code-block": "2.0.0-beta.204",
|
|
|
|
"@tiptap/extension-mention": "2.0.0-beta.204",
|
|
|
|
"@tiptap/extension-paragraph": "2.0.0-beta.204",
|
|
|
|
"@tiptap/extension-placeholder": "2.0.0-beta.204",
|
|
|
|
"@tiptap/extension-text": "2.0.0-beta.204",
|
|
|
|
"@tiptap/starter-kit": "2.0.0-beta.204",
|
|
|
|
"@tiptap/suggestion": "2.0.0-beta.204",
|
|
|
|
"@tiptap/vue-3": "2.0.0-beta.204",
|
2022-12-20 14:22:21 +00:00
|
|
|
"@vueuse/core": "^9.8.2",
|
|
|
|
"@vueuse/integrations": "^9.8.2",
|
2022-12-20 13:25:39 +00:00
|
|
|
"blurhash": "^2.0.4",
|
|
|
|
"browser-fs-access": "^0.31.1",
|
|
|
|
"floating-vue": "2.0.0-beta.20",
|
|
|
|
"focus-trap": "^7.2.0",
|
|
|
|
"form-data": "^4.0.0",
|
|
|
|
"fuse.js": "^6.6.2",
|
|
|
|
"js-yaml": "^4.1.0",
|
|
|
|
"lru-cache": "^7.14.1",
|
|
|
|
"masto": "^4.7.5",
|
|
|
|
"pinia": "^2.0.27",
|
|
|
|
"shiki": "^0.11.1",
|
|
|
|
"shiki-es": "^0.1.2",
|
|
|
|
"tauri-plugin-log-api": "github:tauri-apps/tauri-plugin-log",
|
2022-12-22 02:12:37 +00:00
|
|
|
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store",
|
2022-12-20 13:25:39 +00:00
|
|
|
"tippy.js": "^6.3.7",
|
|
|
|
"ufo": "^1.0.1",
|
|
|
|
"ultrahtml": "^1.0.4",
|
|
|
|
"vue-virtual-scroller": "2.0.0-beta.7"
|
2022-12-11 10:52:36 +00:00
|
|
|
},
|
2022-11-13 05:34:43 +00:00
|
|
|
"devDependencies": {
|
2022-12-20 13:25:39 +00:00
|
|
|
"@antfu/eslint-config": "^0.34.0",
|
2022-11-25 08:25:56 +00:00
|
|
|
"@antfu/ni": "^0.18.8",
|
2022-11-24 15:22:02 +00:00
|
|
|
"@iconify-json/carbon": "^1.1.11",
|
|
|
|
"@iconify-json/logos": "^1.1.19",
|
2022-12-03 05:30:27 +00:00
|
|
|
"@iconify-json/material-symbols": "^1.1.25",
|
2022-12-06 11:07:17 +00:00
|
|
|
"@iconify-json/ph": "^1.1.3",
|
2022-11-24 15:22:02 +00:00
|
|
|
"@iconify-json/ri": "^1.1.4",
|
2022-12-03 05:30:27 +00:00
|
|
|
"@iconify-json/twemoji": "^1.1.7",
|
2022-12-08 07:19:22 +00:00
|
|
|
"@nuxtjs/i18n": "^8.0.0-beta.7",
|
2022-12-03 05:30:27 +00:00
|
|
|
"@pinia/nuxt": "^0.4.6",
|
2022-12-11 10:52:36 +00:00
|
|
|
"@types/fnando__sparkline": "^0.3.4",
|
2022-11-15 14:29:46 +00:00
|
|
|
"@types/fs-extra": "^9.0.13",
|
2022-11-24 03:42:03 +00:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2022-11-25 08:56:14 +00:00
|
|
|
"@types/prettier": "^2.7.1",
|
2022-11-23 17:17:54 +00:00
|
|
|
"@types/wicg-file-system-access": "^2020.9.5",
|
2022-12-20 13:25:39 +00:00
|
|
|
"@unocss/nuxt": "^0.47.6",
|
2022-11-25 08:25:56 +00:00
|
|
|
"@vitejs/plugin-vue": "^3.2.0",
|
2022-11-27 00:21:06 +00:00
|
|
|
"@vue-macros/nuxt": "^0.1.2",
|
2022-12-20 14:22:21 +00:00
|
|
|
"@vueuse/nuxt": "^9.8.2",
|
2022-12-03 05:30:27 +00:00
|
|
|
"eslint": "^8.29.0",
|
2022-11-23 13:36:20 +00:00
|
|
|
"esno": "^0.16.3",
|
2022-12-03 05:30:27 +00:00
|
|
|
"fs-extra": "^11.1.0",
|
2022-12-05 04:59:04 +00:00
|
|
|
"jsdom": "^20.0.3",
|
2022-11-28 20:21:32 +00:00
|
|
|
"lint-staged": "^13.0.4",
|
2022-11-16 15:49:31 +00:00
|
|
|
"nuxt": "^3.0.0",
|
2022-11-14 03:33:09 +00:00
|
|
|
"postcss-nested": "^6.0.0",
|
2022-11-25 08:56:14 +00:00
|
|
|
"prettier": "^2.8.0",
|
2022-11-14 03:45:20 +00:00
|
|
|
"rollup-plugin-node-polyfills": "^0.2.1",
|
2022-11-28 20:21:32 +00:00
|
|
|
"simple-git-hooks": "^2.8.1",
|
2022-11-27 15:04:04 +00:00
|
|
|
"std-env": "^3.3.1",
|
2022-11-24 03:42:03 +00:00
|
|
|
"theme-vitesse": "^0.6.0",
|
2022-11-16 15:49:31 +00:00
|
|
|
"typescript": "^4.9.3",
|
2022-11-27 00:21:06 +00:00
|
|
|
"unplugin-auto-import": "^0.12.0",
|
2022-11-27 06:54:56 +00:00
|
|
|
"vite-plugin-inspect": "^0.7.9",
|
2022-12-17 23:29:16 +00:00
|
|
|
"vite-plugin-pwa": "^0.13.3",
|
2022-11-27 12:29:10 +00:00
|
|
|
"vitest": "^0.25.3",
|
2022-12-03 05:31:58 +00:00
|
|
|
"vue-tsc": "^1.0.11",
|
2022-12-17 23:29:16 +00:00
|
|
|
"workbox-window": "^6.5.4"
|
2022-11-28 20:21:32 +00:00
|
|
|
},
|
|
|
|
"simple-git-hooks": {
|
|
|
|
"pre-commit": "pnpm lint-staged"
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"*": "eslint --fix"
|
2022-11-13 05:34:43 +00:00
|
|
|
}
|
|
|
|
}
|