-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.41 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
{
"name": "openproof",
"version": "0.9.0",
"private": true,
"license": "AGPL-3.0-only",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"compile": "hardhat compile",
"test:contracts": "hardhat test",
"deploy:base-sepolia": "hardhat run scripts/deploy.js --network baseSepolia",
"cap:init": "npx cap init OpenProof com.openproof.app",
"cap:add:android": "npx cap add android",
"cap:sync": "npx cap sync",
"cap:open:android": "npx cap open android",
"cap:build:android": "bash scripts/cap-build.sh",
"export": "next build",
"package:msix": "echo 'Run: npx electron-builder --win or manual MSIX packaging via Windows App Certification Kit'"
},
"dependencies": {
"@fontsource-variable/stack-sans-notch": "^5.2.1",
"@rainbow-me/rainbowkit": "^2.2.11",
"@tanstack/react-query": "^5.100.14",
"lucide-react": "^1.17.0",
"next": "16.2.7",
"qrcode": "^1.5.4",
"react": "19.2.7",
"react-dom": "19.2.7",
"viem": "^2.51.0",
"wagmi": "^2.19.5"
},
"devDependencies": {
"@capacitor/android": "^7.0.0",
"@capacitor/cli": "^7.0.0",
"@capacitor/core": "^7.0.0",
"@capacitor/filesystem": "^7.0.0",
"@capacitor/ios": "^7.0.0",
"@capacitor/keyboard": "^7.0.0",
"@capacitor/share": "^7.0.0",
"@capacitor/splash-screen": "^7.0.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@tailwindcss/postcss": "^4",
"@types/mocha": "^10.0.10",
"@types/node": "^20",
"@types/qrcode": "^1.5.6",
"@types/react": "^19",
"@types/react-dom": "^19",
"chai": "^4.5.0",
"dotenv": "^17.4.2",
"eslint": "^9",
"eslint-config-next": "16.2.7",
"hardhat": "^2.22.19",
"sharp": "^0.35.2",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"description": "A minimal, verifiable proof-of-existence app on Base Sepolia.",
"author": "Sparsh Sam",
"repository": {
"type": "git",
"url": "git+https://github.com/sparshsam/openproof.git"
},
"homepage": "https://github.com/sparshsam/openproof#readme",
"bugs": {
"url": "https://github.com/sparshsam/openproof/issues"
},
"keywords": [],
"allowScripts": {
"bufferutil@4.1.0": true,
"keccak@3.0.4": true,
"sharp@0.34.5": true,
"secp256k1@4.0.4": true,
"unrs-resolver@1.12.2": true,
"utf-8-validate@5.0.10": true
}
}