el.xwx.moe/package.json

80 lines
2.3 KiB
JSON
Raw Normal View History

2023-01-22 15:39:35 -06:00
{
2023-01-29 12:12:36 -06:00
"name": "linkwarden",
"version": "2.4.6",
2023-01-22 15:39:35 -06:00
"main": "index.js",
"repository": "https://github.com/linkwarden/linkwarden.git",
2023-01-22 15:39:35 -06:00
"author": "Daniel31X13 <daniel31x13@gmail.com>",
2023-05-31 09:30:45 -05:00
"license": "AGPL-3.0",
2023-01-22 15:39:35 -06:00
"private": true,
"prisma": {
"seed": "node ./prisma/seed.js"
},
2023-01-22 15:39:35 -06:00
"scripts": {
"dev": "concurrently -k \"next dev\" \"yarn worker:dev\"",
"worker:dev": "nodemon --skip-project scripts/worker.ts",
"worker:prod": "ts-node --transpile-only --skip-project scripts/worker.ts",
"start": "concurrently \"next start\" \"yarn worker:prod\"",
2023-12-08 10:01:47 -06:00
"build": "next build",
2023-12-29 11:21:22 -06:00
"lint": "next lint",
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\""
2023-01-22 15:39:35 -06:00
},
"dependencies": {
"@auth/prisma-adapter": "^1.0.1",
"@aws-sdk/client-s3": "^3.379.1",
"@headlessui/react": "^1.7.15",
"@mozilla/readability": "^0.4.4",
"@prisma/client": "^4.16.2",
"@stripe/stripe-js": "^1.54.1",
"@types/crypto-js": "^4.1.1",
"@types/formidable": "^3.4.5",
2023-12-08 10:01:47 -06:00
"@types/node": "^20.10.4",
2023-06-28 21:24:24 -05:00
"@types/nodemailer": "^6.4.8",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.7",
2023-10-13 01:03:38 -05:00
"axios": "^1.5.1",
2023-02-06 11:59:23 -06:00
"bcrypt": "^5.1.0",
2023-12-16 08:08:52 -06:00
"bootstrap-icons": "^1.11.2",
"colorthief": "^2.4.0",
"concurrently": "^8.2.2",
"crypto-js": "^4.2.0",
2023-08-01 21:03:49 -05:00
"csstype": "^3.1.2",
"dompurify": "^3.0.6",
"eslint": "8.46.0",
"eslint-config-next": "13.4.9",
"formidable": "^3.5.1",
"framer-motion": "^10.16.4",
2023-12-23 11:11:47 -06:00
"jimp": "^0.22.10",
"jsdom": "^22.1.0",
2023-11-16 02:22:16 -06:00
"lottie-web": "^5.12.2",
2023-11-02 00:52:49 -05:00
"micro": "^10.0.1",
2023-10-05 11:57:44 -05:00
"next": "13.4.12",
2023-05-20 15:46:15 -05:00
"next-auth": "^4.22.1",
2023-06-28 21:24:24 -05:00
"nodemailer": "^6.9.3",
2023-07-02 07:17:32 -05:00
"playwright": "^1.35.1",
2023-01-22 15:39:35 -06:00
"react": "18.2.0",
2023-06-02 06:59:52 -05:00
"react-colorful": "^5.6.1",
2023-01-29 12:12:36 -06:00
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
2023-05-22 07:20:48 -05:00
"react-image-file-resizer": "^0.4.8",
"react-select": "^5.7.4",
"stripe": "^12.13.0",
"zustand": "^4.3.8"
2023-01-22 15:39:35 -06:00
},
"devDependencies": {
2023-07-02 07:17:32 -05:00
"@playwright/test": "^1.35.1",
2023-02-06 11:59:23 -06:00
"@types/bcrypt": "^5.0.0",
"@types/dompurify": "^3.0.4",
"@types/jsdom": "^21.1.3",
2023-12-08 10:01:47 -06:00
"@types/shelljs": "^0.8.15",
2023-06-12 13:23:11 -05:00
"autoprefixer": "^10.4.14",
2023-11-20 11:48:41 -06:00
"daisyui": "^4.4.2",
"nodemon": "^3.0.2",
"postcss": "^8.4.26",
2023-12-29 11:21:22 -06:00
"prettier": "3.1.1",
"prisma": "^5.1.0",
2023-12-08 10:01:47 -06:00
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.2",
2023-12-08 10:01:47 -06:00
"typescript": "4.9.4"
2023-01-22 15:39:35 -06:00
}
}