-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.12 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
{
"name": "danilonovakovic-portfolio",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"docs:check": "node scripts/check-docs.mjs",
"lint": "eslint . --cache",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc -b --noEmit",
"check": "pnpm lint && pnpm typecheck && pnpm fallow:audit && pnpm test",
"fallow": "fallow",
"fallow:health": "fallow health --report-only",
"fallow:audit": "fallow audit --changed-since main --fail-on-issues --quiet",
"fallow:ci": "fallow audit --changed-since origin/main --fail-on-issues --quiet",
"fallow:baseline": "fallow dead-code --save-baseline fallow-baselines/dead-code.json --quiet; fallow health --save-baseline fallow-baselines/health.json --quiet; fallow dupes --save-baseline fallow-baselines/dupes.json --quiet",
"test": "vitest run",
"test:changed": "vitest run --changed",
"test:watch": "vitest"
},
"dependencies": {
"clsx": "^2.1.1",
"lucide-react": "^1.8.0",
"phaser": "^4.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"tailwind-merge": "^3.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@storybook/addon-docs": "^10.3.6",
"@storybook/react-vite": "^10.3.6",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.5.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"fallow": "^2.85.0",
"globals": "^17.4.0",
"jsdom": "^29.0.2",
"postcss": "^8.5.10",
"storybook": "^10.3.6",
"tailwindcss": "^4.2.2",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.0",
"vite": "^8.0.4",
"vitest": "^3.2.4"
}
}