generated from SafdarJamal/vite-template-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.87 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.87 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
{
"name": "cardless-remix",
"private": true,
"type": "module",
"scripts": {
"build": "VITE_COMMIT_HASH=$(git rev-parse HEAD 2>/dev/null || echo 'development') VITE_GIT_REPO_OWNER=$(git remote get-url origin 2>/dev/null | sed -E 's|.*[:/]([^/]+)/[^/]+(\\.git)?$|\\1|' || echo '') VITE_GIT_REPO_SLUG=$(git remote get-url origin 2>/dev/null | sed -E 's|.*[:/][^/]+/([^/]+)(\\.git)?$|\\1|' || echo '') react-router build",
"dev": "react-router dev",
"start": "react-router-serve ./build/server/index.js",
"typecheck": "react-router typegen && tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:aws": "node scripts/test-aws-setup.js",
"test:algorand": "node scripts/test-algorand.js",
"test:algorand:testnet": "node scripts/test-algorand.js testnet",
"test:algorand:localnet": "node scripts/test-algorand.js localnet",
"test:algorand:wallet": "node scripts/test-algorand.js wallet",
"test:algorand:credential": "node scripts/test-algorand.js credential",
"setup:localnet": "node scripts/localnet-setup.js",
"docker:localnet": "docker-compose -f docker/algorand-localnet.yml up -d",
"docker:localnet:stop": "docker-compose -f docker/algorand-localnet.yml down",
"algokit:build": "cd cardlessid-algorand && algokit project run build",
"algokit:generate": "algokit generate client"
},
"dependencies": {
"@aws-sdk/client-rekognition": "^3.907.0",
"@aws-sdk/client-textract": "^3.907.0",
"@emailjs/browser": "^4.4.1",
"@google-cloud/documentai": "^9.4.0",
"@heyo.so/js": "^1.1.2",
"@react-router/node": "^7.10.0",
"@react-router/serve": "^7.7.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/react-router": "^1.2.3",
"@worldcoin/idkit": "^2.4.1",
"algosdk": "^3.5.2",
"dotenv": "^17.2.3",
"emailjs": "^4.0.3",
"firebase": "^12.3.0",
"firebase-admin": "^13.5.0",
"isbot": "^5.1.27",
"qrcode": "^1.5.4",
"qrcode.react": "^4.2.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-router": "^7.10.0",
"react-router-devtools": "^5.1.3",
"react-syntax-highlighter": "^15.6.6"
},
"devDependencies": {
"@algorandfoundation/algokit-client-generator": "^6.0.0",
"@algorandfoundation/algokit-utils": "^9.1.2",
"@react-router/dev": "^7.10.0",
"@tailwindcss/vite": "^4.1.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/firebase": "^2.4.32",
"@types/node": "^20",
"@types/qrcode": "^1.5.5",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitest/ui": "^3.2.4",
"daisyui": "^5.1.14",
"happy-dom": "^20.0.0",
"tailwindcss": "^4.1.4",
"typescript": "^5.8.3",
"vite": "^6.3.3",
"vite-plugin-devtools-json": "^1.0.0",
"vite-plugin-llms": "^1.0.2",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
}
}