-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 2.53 KB
/
package.json
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
{
"name": "deadrop",
"version": "0.1.2",
"description": "e2e encrypted secret sharing",
"main": "index.js",
"author": "Nieky Allen <[email protected]>",
"license": "GPL-3.0-only",
"repository": {
"url": "https://github.com/dallen4/deadrop.git"
},
"private": true,
"workspaces": [
"web",
"cli",
"worker",
"shared"
],
"scripts": {
"web": "yarn workspace web",
"cli": "yarn workspace cli",
"worker": "yarn workspace worker",
"shared": "yarn workspace shared",
"start": "yarn web start",
"build": "yarn web build",
"start:prod": "yarn web start:prod",
"drybuild": "sh ./scripts/drybuild.sh",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage.enabled true",
"test:e2e": "yarn web test:e2e",
"test:preview": "vite preview --outDir test-report",
"cli:build": "yarn cli build",
"cli:release": "cd cli && yarn install --frozen-lockfile && yarn release",
"worker:deploy": "yarn worker deploy",
"analyze:dup": "jscpd",
"analyze:unused": "ts-prune",
"postversion": "git push --tags",
"prepare": "husky"
},
"dependencies": {
"@clerk/clerk-js": "^5.22.3",
"@clerk/clerk-sdk-node": "^5.0.42",
"@libsql/client": "^0.14.0",
"@upstash/redis": "^1.34.3",
"@xstate/react": "^3.0.1",
"drizzle-kit": "^0.30.3",
"drizzle-orm": "^0.38.0",
"drizzle-zod": "^0.7.0",
"hono": "^4.6.19",
"nanoid": "^5.0.1",
"nanoid-dictionary": "^4.3.0",
"peerjs": "^1.4.7",
"qrcode": "^1.5.3",
"ws": "^8.11.0",
"xstate": "^4.38.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250124.3",
"@types/nanoid-dictionary": "^4.2.3",
"@types/node": "^20",
"@types/qrcode": "^1.5.5",
"@vitest/coverage-istanbul": "^2.1.8",
"@vitest/ui": "^2.1.8",
"eslint": "^8.31.0",
"happy-dom": "^16.5.2",
"husky": "^9.1.7",
"jscpd": "^4.0.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"ts-prune": "^0.10.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"browser": {
"tls": false,
"net": false,
"bufferutil": false,
"utf-8-validate": false
},
"engines": {
"node": ">=20",
"yarn": "1"
},
"jscpd": {
"format": [
"typescript"
],
"ignore": [
"**/node_modules/**",
"**/*.spec.ts"
],
"absolute": true,
"gitignore": true,
"path": [
"shared",
"cli",
"web",
"worker"
]
}
}