-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.16 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.16 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
{
"name": "dangermond-preserve-data-catalog",
"version": "1.0.0",
"description": "A React TypeScript application for browsing and visualizing environmental research data from the Dangermond Preserve",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"guard:v2-file-size": "node scripts/v2/check-file-size-guardrail.mjs",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:smoke": "playwright test --grep='Smoke Tests'",
"test:e2e:report": "playwright show-report",
"test:e2e:generate-data": "tsx e2e/scripts/parse-manual-test-csv.ts",
"test:e2e:checkpoint": "playwright test --config=playwright.checkpoint.config.ts",
"test:e2e:validate": "tsx e2e/scripts/validate-tests.ts",
"test:e2e:progress": "tsx e2e/scripts/progress-report.ts"
},
"dependencies": {
"@arcgis/core": "^4.33.12",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@types/jszip": "^3.4.0",
"echarts": "^6.0.0",
"jszip": "^3.10.1",
"lucide-react": "^0.555.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.6.0"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@testing-library/jest-dom": "^6.9.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/pngjs": "^6.0.5",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"autoprefixer": "^10.4.14",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"jsdom": "^27.0.0",
"pngjs": "^7.0.0",
"postcss": "^8.4.27",
"tailwindcss": "^3.3.3",
"tsx": "^4.20.6",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^3.2.4"
}
}