-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.58 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.58 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
{
"name": "eggdrop",
"private": "true",
"version": "0.3.2",
"type": "module",
"scripts": {
"build": "tsc -b && vite build",
"check": "pnpm lint && pnpm tsc && pnpm test && pnpm build",
"checks": "pnpm check",
"ci": "pnpm lint && pnpm tsc && pnpm test",
"dev": "vite",
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --fix",
"preview": "vite preview",
"test:all": "playwright test",
"test:automated": "playwright test --grep @automated",
"test:automated:headed": "playwright test --grep @automated --headed",
"test:automated:headed:single": "playwright test --grep @automated --headed --workers=1 --project=chromium",
"test:automated:ui": "playwright test --grep @automated --ui",
"test:e2e:debug": "TEST_MODE=true playwright test --grep @regular --debug",
"test:e2e:headed": "TEST_MODE=true playwright test --grep @regular --headed",
"test:e2e:report": "playwright show-report",
"test:e2e": "TEST_MODE=true playwright test --grep @regular",
"test:watch": "vitest",
"test": "vitest run",
"tsc": "tsc --noEmit",
"update:badges": "node scripts/update-badge-versions.js",
"changeset": "changeset",
"version": "changeset version"
},
"dependencies": {
"@fontsource/nunito-sans": "^5.2.7",
"@statelyai/inspect": "^0.4.0",
"@xstate/react": "^6.0.0",
"fontfaceobserver": "^2.3.0",
"howler": "^2.2.4",
"konva": "^10.0.8",
"lucide-react": "^0.553.0",
"nanoid": "^5.1.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-konva": "^19.2.0",
"use-image": "^1.1.4",
"xstate": "^5.24.0"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@eslint/js": "^9.38.0",
"@playwright/test": "^1.56.1",
"@total-typescript/tsconfig": "^1.0.4",
"@types/fontfaceobserver": "^2.1.3",
"@types/howler": "^2.2.12",
"@types/node": "^24.9.2",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitejs/plugin-react": "^5.1.0",
"eslint": "^9.38.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.5"
},
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=20.0.0"
}
}