-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.98 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.98 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
{
"name": "deed-shield",
"private": true,
"version": "0.2.0",
"type": "commonjs",
"engines": {
"node": "20.x"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"axios": "^1.13.6",
"better-sqlite3": "^12.4.1",
"busboy": "^1.6.0",
"chokidar": "^4.0.3",
"dotenv": "^17.2.3",
"ethers": "^6.13.4",
"fastify": "5.8.1",
"fastify-rate-limit": "^5.8.0",
"hardhat": "3.1.6",
"jsonwebtoken": "^9.0.3",
"zod": "^3.25.76"
},
"scripts": {
"postinstall": "npm --workspace packages/core run build",
"dev": "concurrently \"npm:dev --workspace apps/api\" \"npm:dev --workspace apps/web\"",
"build": "npm -ws run build",
"lint": "eslint .",
"typecheck": "tsc -b",
"test": "vitest run",
"validate": "npm run lint && npm run typecheck && npm test && npm run build",
"smoke:signed-receipt": "bash scripts/smoke-signed-receipt.sh",
"security:audit": "npm audit --omit=dev --audit-level=high",
"demo": "tsx demo/demo-script.ts",
"demo:vanta-terminal": "bash scripts/demo-vanta-terminal.sh",
"demo:playwright": "node scripts/playwright-vanta-command-center.mjs",
"start:verify": "node src/api/verify.js",
"init:db": "rm -f ${DB_PATH:-attestations.sqlite} && sqlite3 ${DB_PATH:-attestations.sqlite} < schema.sqlite.sql",
"gen:keys": "node scripts/gen-issuer-keys.js",
"seed:issuer": "node scripts/seed-issuer-public.js",
"seed:parcel": "cd apps/api && tsx scripts/seed-parcel.ts"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitest/coverage-v8": "^3.2.4",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"playwright": "^1.58.2",
"tsx": "^4.15.7",
"typescript": "5.5.4",
"vitest": "^3.2.4"
},
"overrides": {
"mocha": {
"serialize-javascript": "7.0.3"
}
}
}