-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "secrets-sharing",
"author": "Paul-Vincent Roll",
"version": "0.1.2",
"private": true,
"scripts": {
"copy-wasm": "mkdir -p public/wasm && cp node_modules/zxing-wasm/dist/reader/zxing_reader.wasm public/wasm/",
"dev": "next dev",
"dev:legal": "NEXT_PUBLIC_ENABLE_LEGAL_PAGES=true npm run dev",
"prebuild": "jest",
"build": "next build",
"build:legal": "NEXT_PUBLIC_ENABLE_LEGAL_PAGES=true npm run build",
"start": "next start",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"generate-test-fixtures": "npx tsx src/lib/protocol/__tests__/fixtures/generate-test-fixtures.ts",
"postinstall": "npm run copy-wasm && node scripts/download-fonts.js"
},
"dependencies": {
"@heroicons/react": "^2.1.5",
"barcode-detector": "^3.0.8",
"framer-motion": "^12.23.24",
"jspdf": "^3.0.4",
"jszip": "^3.10.1",
"next": "16.0.3",
"pako": "^2.1.0",
"pdfjs-dist": "^5.4.394",
"qrcode": "^1.5.4",
"react": "19.2.0",
"react-dom": "19.2.0",
"shamir-secret-sharing": "^0.0.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/pako": "^2.0.4",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"babel-plugin-react-compiler": "1.0.0",
"eslint": "^9",
"eslint-config-next": "16.0.3",
"jest": "^30.2.0",
"tailwindcss": "^4",
"ts-jest": "^29.4.5",
"typescript": "^5"
}
}