-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
137 lines (137 loc) · 5.46 KB
/
Copy pathpackage.json
File metadata and controls
137 lines (137 loc) · 5.46 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
{
"name": "scriptio",
"private": true,
"version": "2.1.0",
"type": "module",
"scripts": {
"postinstall": "patch-package",
"export": "next export",
"start": "next start",
"dev": "docker compose --profile dev up -d --wait && npx prisma db push && next dev",
"build": "npx prisma generate && next build",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"build:tauri": "npx prisma generate && npx tsx scripts/build-tauri.ts",
"stripe:dev": "stripe listen --forward-to localhost:3000/api/webhooks/stripe",
"cloud:dev": "wrangler dev -c src/lib/cloud/wrangler.toml",
"cloud:deploy:staging": "wrangler deploy -c src/lib/cloud/wrangler.toml --env staging",
"cloud:deploy:prod": "wrangler deploy -c src/lib/cloud/wrangler.toml --env production",
"build:standalone": "next build && tauri dev --no-watch",
"build:windows": "tauri-windows-bundle build --arch x64,arm64 --runner npm",
"debug:windows": "tauri-windows-bundle build --arch x64,arm64 --debug --runner npm",
"debug:windows:x64": "tauri-windows-bundle build --arch x64 --debug --runner npm",
"build:windows:x64": "tauri-windows-bundle build --arch x64 --runner npm",
"build:windows:arm64": "tauri-windows-bundle build --arch arm64 --runner npm",
"build:macos": "npm run tauri build -- --bundles app --target universal-apple-darwin",
"debug:macos": "npm run tauri build -- --bundles app --target universal-apple-darwin --debug",
"build:macos:appstore": "npm run tauri build -- --bundles app --target universal-apple-darwin --config src-tauri/tauri.appstore.conf.json",
"lint": "eslint .",
"bench": "vitest bench",
"bench:watch": "vitest bench --watch",
"test": "vitest run",
"test:watch": "vitest",
"gen:apple:jwt": "node --env-file=.env --import tsx scripts/generate-apple-jwt.ts"
},
"dependencies": {
"@auth/prisma-adapter": "^2.11.1",
"@aws-sdk/client-s3": "^3.113.0",
"@aws-sdk/s3-request-presigner": "^3.952.0",
"@choochmeque/tauri-plugin-iap-api": "^0.8.2",
"@formkit/auto-animate": "^0.7.0",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.7.0",
"@svgr/core": "^8.1.0",
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "2.6.0",
"@tauri-apps/plugin-fs": "2.4.5",
"@tauri-apps/plugin-opener": "2.5.3",
"@tauri-apps/plugin-store": "^2.4.2",
"@tiptap/extension-bold": "^3.13.0",
"@tiptap/extension-collaboration": "^3.13.0",
"@tiptap/extension-collaboration-caret": "^3.13.0",
"@tiptap/extension-document": "^3.13.0",
"@tiptap/extension-history": "^3.13.0",
"@tiptap/extension-italic": "^3.13.0",
"@tiptap/extension-paragraph": "^3.13.0",
"@tiptap/extension-placeholder": "^3.13.0",
"@tiptap/extension-text": "^3.13.0",
"@tiptap/extension-underline": "^3.13.0",
"@tiptap/react": "^3.13.0",
"chart.js": "^4.4.1",
"chartjs-plugin-datalabels": "^2.2.0",
"debounce": "^2.0.0",
"fast-xml-parser": "^5.3.4",
"fflate": "^0.8.2",
"file-saver": "^2.0.5",
"hogan.js": "^3.0.2",
"hunspell-asm": "^4.0.2",
"inline-css": "^4.0.3",
"jose": "^5.10.0",
"jspdf": "^4.2.0",
"lucide-react": "^0.562.0",
"nanoid": "^5.1.11",
"next": "^16.1.6",
"next-auth": "^5.0.0-beta.30",
"next-intl": "^4.8.3",
"next-themes": "^0.2.0",
"nodemailer": "^8.0.7",
"pdfmake": "^0.2.9",
"pg": "^8.20.0",
"prom-client": "^15.1.3",
"react": "^19.2.4",
"react-chartjs-2": "^5.2.0",
"react-dom": "^19.2.4",
"render2": "^0.1.4",
"stripe": "^21.0.1",
"swr": "^2.2.4",
"tinykeys": "^3.0.0",
"uuid": "^14.0.0",
"y-indexeddb": "^9.0.12",
"y-prosemirror": "^1.3.7",
"y-protocols": "^1.0.6",
"y-websocket": "^3.0.0",
"yjs": "^13.6.27",
"zod": "^4.1.13"
},
"devDependencies": {
"@choochmeque/tauri-windows-bundle": "^0.1.14",
"@cloudflare/workers-types": "^4.20251216.0",
"@svgr/webpack": "^8.1.0",
"@tauri-apps/cli": "^2.10.0",
"@types/file-saver": "^2.0.5",
"@types/hogan.js": "^3.0.1",
"@types/node": "20.11.0",
"@types/nodemailer": "^6.4.14",
"@types/pdfmake": "^0.2.12",
"@types/pg": "^8.20.0",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@vitest/browser": "^3.2.4",
"cross-env": "^7.0.3",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.8",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^7.0.1",
"patch-package": "^8.0.1",
"playwright": "^1.58.2",
"prisma": "^7.7.0",
"tsx": "^4.21.0",
"typescript": "^5.7.3",
"typescript-plugin-css-modules": "^5.2.0",
"vite": "^6.4.1",
"vitest": "^3.2.4",
"wait-on": "^9.0.3",
"wrangler": "^4.35.0"
},
"overrides": {
"@hono/node-server": ">=1.19.13",
"nodemailer": "^8.0.7"
},
"browser": {
"tokenize": false
}
}