-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2 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
{
"name": "openlos",
"version": "0.1.0",
"private": true,
"description": "Open Letter of Support local-first endorsement tool.",
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test:lineage": "prisma generate && node --test tests/letter-lineage.test.mjs",
"test:assets": "prisma generate && tsc lib/local-asset-management.ts --outDir /tmp/openlos-asset-tests --module commonjs --moduleResolution node --target ES2022 --skipLibCheck --esModuleInterop --noEmit false && node --test tests/asset-management.test.mjs",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev --name init",
"prisma:studio": "prisma studio",
"prisma:deploy": "prisma migrate deploy",
"prisma:validate": "prisma validate"
},
"dependencies": {
"@prisma/client": "^6.8.2",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-tooltip": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"docx": "^9.5.1",
"lucide-react": "^0.511.0",
"next": "^15.3.2",
"nodemailer": "^8.0.7",
"playwright-core": "^1.52.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"signature_pad": "^5.0.4",
"tailwind-merge": "^3.3.0",
"zod": "^3.25.7"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19.1.5",
"@types/react-dom": "^19.1.5",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-next": "^15.3.2",
"postcss": "^8.5.10",
"prisma": "^6.8.2",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20.11.0"
},
"overrides": {
"postcss": "^8.5.10"
}
}