-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.22 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
{
"name": "linked-notes",
"version": "1.1.0",
"private": true,
"description": "A calm, local-only note-taking app with durable links between notes.",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"apple-notes:export": "node scripts/export-apple-notes.mjs",
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --max-warnings=0",
"lint:security": "eslint . --format json --output-file eslint-security-results.json --max-warnings=0",
"typecheck": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:validate": "DATABASE_URL=postgresql://linked_notes:local@127.0.0.1:5432/linked_notes prisma validate",
"prisma:migrate": "prisma migrate dev",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:migrations": "node scripts/test-migrations.mjs",
"test:security": "vitest run --config vitest.security.config.ts",
"test:performance": "tsx scripts/measure-search.ts",
"test:upload-memory": "tsx scripts/measure-upload-memory.ts",
"test:e2e": "playwright test",
"test:release-image": "node scripts/release-image-smoke.mjs",
"test:release-audit": "node scripts/audit-release.mjs",
"test:smoke": "tsx scripts/smoke.ts",
"check": "npm run format:check && npm run lint && npm run typecheck && npm run prisma:validate && npm run test && npm run build"
},
"dependencies": {
"@prisma/client": "6.19.3",
"@tiptap/core": "^3.20.4",
"@tiptap/extension-link": "^3.20.4",
"@tiptap/extension-mention": "^3.20.4",
"@tiptap/extension-placeholder": "^3.20.4",
"@tiptap/extension-task-item": "^3.20.4",
"@tiptap/extension-task-list": "^3.20.4",
"@tiptap/extension-underline": "^3.20.4",
"@tiptap/markdown": "3.28.0",
"@tiptap/react": "^3.20.4",
"@tiptap/starter-kit": "^3.20.4",
"@tiptap/suggestion": "^3.28.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.545.0",
"next": "16.2.11",
"next-themes": "^0.4.6",
"playwright-core": "1.61.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"sanitize-html": "^2.17.0",
"tailwind-merge": "^3.3.1",
"tar-stream": "3.2.0",
"turndown": "7.2.4",
"zod": "4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@playwright/test": "1.61.1",
"@tailwindcss/postcss": "^4.1.14",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.7.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@types/sanitize-html": "^2.16.0",
"@types/tar-stream": "3.1.4",
"@types/turndown": "5.0.6",
"eslint": "9.39.5",
"eslint-config-next": "16.2.11",
"eslint-plugin-security": "4.0.1",
"jsdom": "^27.0.0",
"prettier": "3.9.5",
"prisma": "6.19.3",
"tailwindcss": "4.3.3",
"tsx": "^4.20.6",
"typescript": "6.0.3",
"vitest": "4.1.10"
},
"overrides": {
"brace-expansion": "5.0.8",
"minimatch": "10.2.5",
"postcss": "8.5.20",
"sharp": "0.35.0"
}
}