drop/server/package.json

78 lines
2.2 KiB
JSON
Raw Normal View History

2024-09-28 19:12:11 +10:00
{
"name": "nuxt-app",
"version": "0.1.0.beta",
2024-09-28 19:12:11 +10:00
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
2025-04-07 21:55:52 -04:00
"postinstall": "prisma generate && nuxt prepare && node build/fix-prisma.js",
2025-04-07 22:34:08 -04:00
"typecheck": "nuxt typecheck",
"lint": "yarn lint:eslint && yarn lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier . --check",
"lint:fix": "eslint . --fix && prettier --write --list-different ."
2024-09-28 19:12:11 +10:00
},
"dependencies": {
"@drop-oss/droplet": "^0.7.2",
2024-10-04 14:43:02 +10:00
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.1.5",
"@nuxt/fonts": "^0.11.0",
"@nuxt/image": "^1.10.0",
"@prisma/client": "^6.6.0",
"@tailwindcss/vite": "^4.0.6",
2025-03-22 17:09:10 -04:00
"argon2": "^0.41.1",
2025-03-22 19:37:28 -04:00
"arktype": "^2.1.10",
2024-10-04 13:01:06 +10:00
"axios": "^1.7.7",
2025-04-06 14:34:25 -04:00
"bcryptjs": "^3.0.2",
2025-04-06 14:27:31 -04:00
"cookie-es": "^2.0.0",
"fast-fuzzy": "^1.12.0",
"file-type-mime": "^0.4.3",
"jdenticon": "^3.3.0",
2025-04-06 15:14:37 -04:00
"luxon": "^3.6.1",
"micromark": "^4.0.1",
2025-04-07 21:55:52 -04:00
"nuxt": "^3.16.2",
"nuxt-security": "2.2.0",
"prisma": "^6.6.0",
2025-03-22 15:58:26 -04:00
"sharp": "^0.33.5",
"stream-mime-type": "^2.0.0",
2024-10-04 13:01:06 +10:00
"turndown": "^7.2.0",
2025-05-07 22:13:22 -04:00
"unstorage": "^1.15.0",
2024-09-28 19:12:11 +10:00
"vue": "latest",
2024-10-14 20:34:23 +11:00
"vue-router": "latest",
2025-04-01 16:42:08 +11:00
"vue3-carousel": "^0.15.0",
"vue3-carousel-nuxt": "^1.1.5",
2024-10-14 20:34:23 +11:00
"vuedraggable": "^4.1.0"
2024-09-28 19:12:11 +10:00
},
"devDependencies": {
2025-04-07 22:34:08 -04:00
"@nuxt/eslint": "^1.3.0",
2024-10-07 22:35:54 +11:00
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
2025-04-10 19:50:37 -04:00
"@types/bcryptjs": "^3.0.0",
2025-04-06 15:14:37 -04:00
"@types/luxon": "^3.6.2",
2025-04-01 21:08:57 +11:00
"@types/node": "^22.13.16",
2024-10-04 13:01:06 +10:00
"@types/turndown": "^5.0.5",
2024-10-04 14:43:02 +10:00
"autoprefixer": "^10.4.20",
2025-04-07 22:34:08 -04:00
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
2025-04-06 14:27:31 -04:00
"h3": "^1.15.1",
2025-05-07 22:14:04 +10:00
"ofetch": "^1.4.1",
2024-10-04 14:43:02 +10:00
"postcss": "^8.4.47",
2025-04-07 22:34:08 -04:00
"prettier": "^3.5.3",
2024-10-04 14:43:02 +10:00
"sass": "^1.79.4",
2025-04-03 18:15:39 -04:00
"tailwindcss": "^4.0.0",
2025-04-07 22:34:08 -04:00
"typescript": "^5.8.3",
2025-04-03 18:15:39 -04:00
"vue-tsc": "^2.2.8"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"overrides": {
"vue3-carousel-nuxt": {
"vue3-carousel": "^0.15.0"
}
2025-04-19 21:50:57 +10:00
},
"prisma": {
"schema": "./prisma"
}
2025-05-07 22:13:22 -04:00
}