-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.45 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.45 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
81
82
83
84
85
86
87
88
89
{
"name": "vision-condition-visualizer",
"version": "0.1.0",
"private": true,
"license": "MIT",
"homepage": "https://theblind.spot",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^5.18.0",
"@mui/material": "^5.18.0",
"html2canvas": "^1.4.1",
"i18next": "^25.8.11",
"i18next-browser-languagedetector": "^8.2.1",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^3.0.0",
"react-i18next": "^16.5.4",
"react-router-dom": "^6.30.1",
"react-scripts": "5.0.1",
"three": "^0.152.2",
"typescript": "^4.9.5"
},
"scripts": {
"generate:llms": "node scripts/generate-llms-txt.mjs",
"generate:og": "node scripts/generate-og-images.mjs",
"prebuild": "node scripts/generate-llms-txt.mjs && node scripts/generate-og-images.mjs",
"start": "react-scripts start",
"build": "react-scripts build",
"build:prod": "GENERATE_SOURCEMAP=false npm run build",
"build:analyze": "npm run build && npx webpack-bundle-analyzer build/static/js/*.js",
"clean": "rm -rf build/ node_modules/.cache/",
"test": "react-scripts test",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"rules": {
"no-console": "warn",
"no-debugger": "warn",
"no-unused-vars": "warn",
"prefer-const": "warn",
"no-var": "error"
}
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 79,
"branches": 63
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.28",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/three": "^0.152.1",
"@cloudflare/workers-types": "^4.20260316.1",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"canvas": "^3.2.1",
"sharp": "^0.34.5",
"webpack-bundle-analyzer": "^4.10.2"
}
}