-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.32 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.32 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
{
"name": "objection-source-certifier",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"public:check": "npm run lint && npm run build && node scripts/public-readiness.mjs",
"forensics:evidence": "node scripts/evidence-forensics.mjs",
"deepseek:check": "node scripts/check-deepseek.mjs",
"verify:run": "tsx scripts/run-verification.ts",
"verify:refresh-public": "tsx scripts/refresh-public-certificate.ts",
"verify:eval": "node scripts/evaluate-verification.mjs",
"verify:certificate": "node scripts/verify-certificate.mjs",
"verify:all": "tsx scripts/run-verification.ts && node scripts/verify-certificate.mjs --materials-dir artifacts/official-evidence-redownload"
},
"dependencies": {
"jszip": "^3.10.1",
"mailauth": "^4.13.3",
"mammoth": "^1.12.0",
"music-metadata": "^11.12.3",
"next": "16.2.6",
"pdf-lib": "^1.17.1",
"pdf-parse": "^2.4.5",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.6",
"tailwindcss": "^4",
"tsx": "^4.22.1",
"typescript": "^5"
}
}