-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 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
{
"name": "infinifox",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,md,json}\"",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"analyze:emojis": "python scripts/analysis/find-emojis.py",
"analyze:hardcoded": "python scripts/analysis/find-hardcoded.py",
"theme:test": "bash scripts/development/test-theme.sh",
"python:lint": "ruff check .",
"python:format": "black .",
"python:typecheck": "mypy ."
},
"dependencies": {
"immer": "^10.1.3",
"konva": "10.0.0",
"lucide-react": "0.543.0",
"perfect-freehand": "1.2.2",
"react": "19.1.1",
"react-dom": "19.1.1",
"react-konva": "19.0.8",
"zustand": "^5.0.8"
},
"devDependencies": {
"@types/react": "19.1.12",
"@types/react-dom": "19.1.9",
"@typescript-eslint/eslint-plugin": "8.43.0",
"@typescript-eslint/parser": "8.43.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jiti": "^2.4.2",
"prettier": "^3.6.2",
"sass-embedded": "^1.92.1",
"typescript": "~5.8.3",
"typescript-eslint": "8.43.0",
"vite": "7.1.5"
}
}