-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "metacall-dashboard",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"predev": "npm run validate",
"dev:fast": "vite",
"start": "npm run validate && vite",
"validate": "npm run format:check && npm run lint && npm run typecheck && npm run unit",
"check": "npm run validate",
"build": "tsc -b && vite build",
"prebuild": "npm run validate",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"preview": "vite preview",
"unit": "vitest run",
"unit:watch": "vitest",
"unit:ui": "vitest --ui",
"unit:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:headed": "playwright test --headed",
"test:smoke": "playwright test tests/e2e/smoke",
"test:codegen": "playwright codegen"
},
"dependencies": {
"@marsidev/react-turnstile": "^1.6.0",
"@metacall/protocol": "^0.1.31",
"@tailwindcss/vite": "^4.2.1",
"clsx": "^2.1.1",
"jspdf": "^4.2.1",
"jszip": "^3.10.1",
"lucide-react": "^0.575.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-error-boundary": "^4.1.2",
"react-router-dom": "^7.13.1",
"sonner": "^1.7.4",
"tailwindcss": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@playwright/test": "^1.48.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jszip": "^3.4.0",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"@tailwindcss/oxide-linux-x64-gnu": "4.2.2"
}
}