-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.51 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
{
"name": "sourceglass",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=24 <25"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:e2e": "vite build --config vite.e2e.config.ts --configLoader runner",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings=0",
"test": "vitest run",
"test:e2e": "npm run test:e2e:provenance && npm run test:e2e:app",
"test:e2e:app": "npm run build && node scripts/run-e2e.mjs e2e/privacy.spec.ts e2e/ui.spec.ts",
"test:e2e:privacy": "npm run build && node scripts/run-e2e.mjs e2e/privacy.spec.ts",
"test:e2e:provenance": "npm run build:e2e && node scripts/run-e2e.mjs e2e/provenance.spec.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"design:guard": "node scripts/design-guard.mjs",
"design:lock": "node scripts/design-guard.mjs --write"
},
"dependencies": {
"@contentauth/c2pa-web": "0.13.1",
"exifreader": "4.41.3",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@types/node": "^24.13.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^6.0.5",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.9.6",
"typescript": "^6.0.3",
"typescript-eslint": "^8.66.0",
"vite": "^8.2.0",
"vitest": "^4.1.10"
}
}