-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.08 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.08 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
{
"name": "setsuna",
"version": "1.5.0",
"description": "Real-time text sharing web application",
"private": true,
"scripts": {
"dev": "next dev",
"build": "pnpm exec prisma generate && next build",
"start": "next start",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"prepare": "husky"
},
"keywords": [
"text-sharing",
"real-time",
"sse"
],
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/adapter-libsql": "7.5.0",
"@prisma/client": "7.5.0",
"jose": "^6.1.3",
"lucide-react": "^0.562.0",
"next": "^15.5.10",
"next-intl": "^4.6.1",
"prisma": "7.5.0",
"react": "^19.2.3",
"react-dom": "^19.2.3"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.2.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.7",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/ui": "^4.1.2",
"autoprefixer": "^10.4.27",
"happy-dom": "^20.8.9",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"msw": "^2.12.14",
"oxlint": "^1.57.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.2",
"typescript": "^6.0.2",
"vite": "^8.0.3",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"@prisma/engines",
"@swc/core",
"esbuild",
"msw",
"prisma",
"sharp",
"unrs-resolver"
]
},
"overrides": {
"ajv": "^6.14.0",
"rollup": "^4.59.0",
"minimatch@^3.0.4": "^3.1.5",
"@typescript-eslint/typescript-estree": {
"minimatch": "^9.0.7"
}
}
}