-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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
{
"name": "pokedex-field-log-generator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "node .next/standalone/server.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"check": "pnpm type-check && pnpm lint && pnpm format:check",
"fix": "pnpm lint:fix && pnpm format"
},
"dependencies": {
"@google/genai": "^1.45.0",
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "^12.6.2",
"ffmpeg-static": "^5.3.0",
"jszip": "^3.10.1",
"lucide-react": "^0.577.0",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"sharp": "^0.34.5"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/ui": "^4.1.0",
"eslint": "^10.0.3",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.2.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}