2023-01-22 15:39:35 -06:00
|
|
|
{
|
2023-01-29 12:12:36 -06:00
|
|
|
"name": "linkwarden",
|
2024-05-22 19:56:56 -05:00
|
|
|
"version": "v2.6.0",
|
2023-01-22 15:39:35 -06:00
|
|
|
"main": "index.js",
|
2023-12-10 14:26:44 -06:00
|
|
|
"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,
|
2023-12-22 12:13:43 -06:00
|
|
|
"prisma": {
|
|
|
|
"seed": "node ./prisma/seed.js"
|
|
|
|
},
|
2023-01-22 15:39:35 -06:00
|
|
|
"scripts": {
|
2024-03-13 08:48:16 -05:00
|
|
|
"dev": "concurrently -k -P \"next dev {@}\" \"yarn worker:dev\" --",
|
2023-12-24 05:46:08 -06:00
|
|
|
"worker:dev": "nodemon --skip-project scripts/worker.ts",
|
|
|
|
"worker:prod": "ts-node --transpile-only --skip-project scripts/worker.ts",
|
2024-03-27 11:07:29 -05:00
|
|
|
"start": "concurrently -P \"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",
|
2024-04-22 23:01:06 -05:00
|
|
|
"e2e": "playwright test e2e",
|
2023-12-29 11:21:22 -06:00
|
|
|
"format": "prettier --write \"**/*.{ts,tsx,js,json,md}\""
|
2023-01-22 15:39:35 -06:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-02-28 23:05:38 -06:00
|
|
|
"@atlaskit/tree": "^8.8.7",
|
2023-07-16 23:44:35 -05:00
|
|
|
"@auth/prisma-adapter": "^1.0.1",
|
2023-07-30 23:34:20 -05:00
|
|
|
"@aws-sdk/client-s3": "^3.379.1",
|
2023-06-09 17:31:14 -05:00
|
|
|
"@headlessui/react": "^1.7.15",
|
2023-10-29 23:30:45 -05:00
|
|
|
"@mozilla/readability": "^0.4.4",
|
2023-07-03 04:03:41 -05:00
|
|
|
"@prisma/client": "^4.16.2",
|
2023-07-15 21:15:43 -05:00
|
|
|
"@stripe/stripe-js": "^1.54.1",
|
2023-03-08 15:31:24 -06:00
|
|
|
"@types/crypto-js": "^4.1.1",
|
2023-12-03 22:52:32 -06:00
|
|
|
"@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",
|
2023-07-09 23:56:54 -05:00
|
|
|
"@types/react": "18.2.14",
|
2023-07-24 00:02:18 -05:00
|
|
|
"@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",
|
2024-05-22 19:56:56 -05:00
|
|
|
"class-variance-authority": "^0.7.0",
|
|
|
|
"clsx": "^2.1.1",
|
2023-06-20 09:39:03 -05:00
|
|
|
"colorthief": "^2.4.0",
|
2023-12-24 05:46:08 -06:00
|
|
|
"concurrently": "^8.2.2",
|
2023-10-25 18:23:38 -05:00
|
|
|
"crypto-js": "^4.2.0",
|
2023-08-01 21:03:49 -05:00
|
|
|
"csstype": "^3.1.2",
|
2023-10-29 23:30:45 -05:00
|
|
|
"dompurify": "^3.0.6",
|
2024-01-01 16:09:55 -06:00
|
|
|
"dotenv": "^16.3.1",
|
2023-08-01 21:05:19 -05:00
|
|
|
"eslint": "8.46.0",
|
2023-07-09 23:57:31 -05:00
|
|
|
"eslint-config-next": "13.4.9",
|
2023-12-03 22:52:32 -06:00
|
|
|
"formidable": "^3.5.1",
|
2023-10-05 10:42:35 -05:00
|
|
|
"framer-motion": "^10.16.4",
|
2024-05-16 14:02:22 -05:00
|
|
|
"handlebars": "^4.7.8",
|
2024-02-17 19:08:34 -06:00
|
|
|
"himalaya": "^1.1.0",
|
2024-05-27 16:42:29 -05:00
|
|
|
"i18next": "^23.11.5",
|
2023-12-23 11:11:47 -06:00
|
|
|
"jimp": "^0.22.10",
|
2023-10-01 11:33:40 -05:00
|
|
|
"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",
|
2024-05-27 16:42:29 -05:00
|
|
|
"next-i18next": "^15.3.0",
|
2024-02-19 14:38:36 -06:00
|
|
|
"node-fetch": "^2.7.0",
|
2023-06-28 21:24:24 -05:00
|
|
|
"nodemailer": "^6.9.3",
|
2024-04-22 07:19:21 -05:00
|
|
|
"playwright": "^1.43.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",
|
2023-06-26 17:33:40 -05:00
|
|
|
"react-hot-toast": "^2.4.1",
|
2024-05-27 16:42:29 -05:00
|
|
|
"react-i18next": "^14.1.2",
|
2023-05-22 07:20:48 -05:00
|
|
|
"react-image-file-resizer": "^0.4.8",
|
2024-04-23 20:48:15 -05:00
|
|
|
"react-masonry-css": "^1.0.16",
|
2023-07-30 23:28:27 -05:00
|
|
|
"react-select": "^5.7.4",
|
2024-03-10 05:08:28 -05:00
|
|
|
"react-spinners": "^0.13.8",
|
2024-02-18 15:43:53 -06:00
|
|
|
"socks-proxy-agent": "^8.0.2",
|
2023-07-15 21:15:43 -05:00
|
|
|
"stripe": "^12.13.0",
|
2024-05-22 19:56:56 -05:00
|
|
|
"tailwind-merge": "^2.3.0",
|
2024-01-23 05:29:15 -06:00
|
|
|
"vaul": "^0.8.8",
|
2023-07-03 04:01:32 -05:00
|
|
|
"zustand": "^4.3.8"
|
2023-01-22 15:39:35 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-04-22 07:19:21 -05:00
|
|
|
"@playwright/test": "^1.43.1",
|
2023-02-06 11:59:23 -06:00
|
|
|
"@types/bcrypt": "^5.0.0",
|
2023-10-29 23:30:45 -05:00
|
|
|
"@types/dompurify": "^3.0.4",
|
2023-10-03 06:04:13 -05:00
|
|
|
"@types/jsdom": "^21.1.3",
|
2023-12-31 09:46:09 -06:00
|
|
|
"@types/node-fetch": "^2.6.10",
|
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",
|
2023-12-24 05:46:08 -06:00
|
|
|
"nodemon": "^3.0.2",
|
2023-07-16 23:44:46 -05:00
|
|
|
"postcss": "^8.4.26",
|
2023-12-29 11:21:22 -06:00
|
|
|
"prettier": "3.1.1",
|
2024-04-01 01:56:54 -05:00
|
|
|
"prisma": "^4.16.2",
|
2023-12-08 10:01:47 -06:00
|
|
|
"tailwindcss": "^3.3.3",
|
2023-12-10 14:26:44 -06:00
|
|
|
"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
|
|
|
}
|
2024-02-28 23:05:38 -06:00
|
|
|
}
|