-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
161 lines (161 loc) · 5.82 KB
/
Copy pathpackage.json
File metadata and controls
161 lines (161 loc) · 5.82 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "librerss",
"version": "1.2.0",
"license": "MIT",
"private": true,
"scripts": {
"setup:playwright": "bunx playwright install chromium firefox webkit",
"dev": "next dev --turbopack",
"dev:playwright": "sh -c 'PLAYWRIGHT_NEXT_DIST_DIR=\"${PLAYWRIGHT_NEXT_DIST_DIR:-.next-playwright}\" next dev --turbopack -H 127.0.0.1 -p \"${PLAYWRIGHT_PORT:-3100}\"'",
"build": "next build",
"clean": "rm -rf .next .cache .coverage",
"start": "next start",
"release": "semantic-release",
"release:dry-run": "semantic-release --dry-run --no-ci --branches ${SEMANTIC_RELEASE_DRY_RUN_BRANCH:-dev} --repository-url file://$PWD",
"check-suite": "./node_modules/.bin/check-suite",
"check": "./node_modules/.bin/check-suite",
"test": "bun test",
"test:e2e": "bun scripts/playwright.ts test",
"test:e2e:coverage": "PLAYWRIGHT_COVERAGE_ENABLED=1 PLAYWRIGHT_COVERAGE_OUTPUT_DIR=coverage/playwright-raw PLAYWRIGHT_COVERAGE_REPORT_DIR=coverage/playwright PLAYWRIGHT_HTML_REPORT_DIR=coverage/playwright/html PLAYWRIGHT_JUNIT_REPORT_PATH=coverage/playwright-junit.xml bun scripts/playwright.ts test",
"test:e2e:headed": "bun scripts/playwright.ts test --headed",
"test:e2e:ui": "bun scripts/playwright.ts test --ui",
"test:regen": "UPDATE_EXTRACTION_PROOF=1 bun test tests/regen-extraction-proof.test.ts",
"db:provision": "bun scripts/db-provision.ts",
"db:create-user": "bun scripts/db-create-user.ts",
"db:generate": "bunx drizzle-kit generate",
"db:push": "bunx drizzle-kit push",
"db:studio": "bunx drizzle-kit studio"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,mts,cts,tsx,jsx}": [
"bun check --lint"
]
},
"dependencies": {
"@lexical/code": "^0.42.0",
"@lexical/link": "^0.42.0",
"@lexical/list": "^0.42.0",
"@lexical/markdown": "^0.42.0",
"@lexical/react": "^0.42.0",
"@lexical/rich-text": "^0.42.0",
"@lexical/selection": "^0.42.0",
"@lexical/table": "^0.42.0",
"@lexical/utils": "^0.42.0",
"@mozilla/readability": "^0.6.0",
"@neondatabase/serverless": "^1.1.0",
"@radix-ui/react-accordion": "^1.2.12",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.99.0",
"@tanstack/react-virtual": "^3.13.24",
"@vercel/analytics": "^2.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"defuddle": "^0.15.0",
"drizzle-orm": "^0.45.2",
"embla-carousel-react": "^8.6.0",
"httpcloak": "^1.6.1",
"lexical": "^0.42.0",
"linkedom": "^0.18.12",
"lodash": "^4.18.1",
"lucide-react": "^1.8.0",
"motion": "^12.38.0",
"next": "^16.2.6",
"next-themes": "^0.4.6",
"pg": "^8.20.0",
"react": "^19.2.5",
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.5",
"react-hook-form": "^7.72.1",
"react-hotkeys-hook": "^5.2.4",
"recharts": "^3.8.1",
"rss-parser": "^3.13.0",
"sanitize-html": "^2.17.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2"
},
"devDependencies": {
"@0xts/gitleaks-cli": "^0.1.3",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@secretlint/secretlint-rule-preset-recommend": "^11.7.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/react": "^16.3.2",
"@types/bun": "^1.3.12",
"@types/lodash": "^4.17.24",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/safe-regex": "1.1.6",
"@types/sanitize-html": "^2.16.1",
"@typescript-eslint/eslint-plugin": "8.58.0",
"check-suite": "github:evanschoffstall/check-suite#main",
"conventional-changelog-conventionalcommits": "^9.3.1",
"dependency-cruiser": "^17.3.10",
"drizzle-kit": "^0.31.10",
"eslint": "^10.2.1",
"eslint-plugin-better-tailwindcss": "^4.4.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^62.9.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-perfectionist": "^5.8.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-regexp": "^3.1.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-tsdoc": "^0.5.2",
"eslint-plugin-unicorn": "^64.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.5.0",
"happy-dom": "^20.9.0",
"jscpd": "^4.0.9",
"knip": "5.88.1",
"lint-staged": "^16.4.0",
"monocart-coverage-reports": "^2.12.10",
"postcss": "^8.5.10",
"prettier": "^3.8.3",
"purgecss": "^8.0.0",
"secretlint": "^11.7.1",
"semantic-release": "^25.0.3",
"tailwindcss": "^4.2.2",
"ts-prune": "^0.10.3",
"tsd": "^0.33.0",
"type-coverage": "^2.29.7",
"typescript": "^5.9.3"
},
"overrides": {
"@xmldom/xmldom": "0.9.10",
"brace-expansion": "1.1.13",
"fast-uri": "3.1.2",
"flatted": "3.4.2",
"ip-address": "10.2.0",
"lodash": "4.18.1",
"minimatch": "3.1.4",
"postcss": "8.5.10",
"undici": "7.24.3",
"esbuild": "0.25.12",
"ws": "8.20.1"
},
"packageManager": "bun@1.0.0"
}