-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.37 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.37 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
{
"name": "notevo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src --max-warnings 0",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"next": "^15.3.0",
"react": "19.1.2",
"react-dom": "19.1.2",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.4",
"@vercel/analytics": "^1",
"jszip": "^3.10.1",
"file-saver": "^2.0.5",
"marked": "^12.0.0",
"dompurify": "^3.2.5"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/file-saver": "^2.0.7",
"@types/dompurify": "^3.0.5",
"tailwindcss": "^4",
"@tailwindcss/postcss": "^4",
"eslint": "^9",
"@eslint/js": "^9",
"typescript-eslint": "^8",
"@eslint-react/eslint-plugin": "^1",
"eslint-plugin-react-hooks": "^5",
"@next/eslint-plugin-next": "^15.3.0",
"vitest": "^1.6.0",
"@vitest/coverage-v8": "^1.6.0",
"@testing-library/react": "^16.3.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/user-event": "^14.5.2",
"jsdom": "^24.1.1",
"@types/jsdom": "^21.1.7"
},
"overrides": {
"caniuse-lite": "^1.0.30001700"
}
}