-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.24 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
{
"name": "tracebuddy",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22.14.0 <23"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"check": "npm run lint && npm run build && npm run check:discovery-model && npm run check:learning-model && npm run check:setup-model && npm run check:family-model && npm run check:mobile-print && npm run check:ar-model && npm run mobile:typecheck && npm run mobile:doctor",
"check:viewports": "node scripts/viewport-check.mjs",
"check:storage": "node scripts/storage-check.mjs",
"check:offline": "node scripts/offline-check.mjs",
"check:discovery": "node scripts/discovery-check.mjs",
"check:discovery-model": "tsx scripts/discovery-model-check.ts",
"check:learning": "node scripts/learning-check.mjs",
"check:learning-model": "tsx scripts/learning-model-check.ts",
"check:setup": "node scripts/setup-check.mjs",
"check:setup-model": "tsx scripts/setup-model-check.ts",
"check:family": "node scripts/family-check.mjs",
"check:navigation": "node scripts/navigation-check.mjs",
"check:family-model": "tsx scripts/family-model-check.ts",
"check:mobile-print": "tsx scripts/mobile-print-check.ts",
"check:ar-model": "tsx scripts/ar-trace-model-check.ts",
"drawings:validate": "tsx scripts/validate-drawings.ts",
"drawings:contact-sheets": "tsx scripts/generate-drawing-contact-sheets.ts",
"screenshots": "node scripts/capture-screenshots.mjs",
"preview": "vite preview",
"mobile:start": "npm --prefix mobile run start",
"mobile:typecheck": "npm --prefix mobile run typecheck",
"mobile:doctor": "npm --prefix mobile run doctor"
},
"dependencies": {
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"puppeteer-core": "^25.1.0",
"tsx": "^4.23.13",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12"
}
}