-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.61 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
{
"name": "nextjs-multizone-tmdb",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.7.1",
"scripts": {
"dev": "turbo dev",
"start": "turbo start",
"build": "turbo build",
"lint": "turbo lint",
"lint:fix": "eslint --fix",
"type-check": "turbo type-check",
"test": "turbo test",
"test:watch": "vitest",
"coverage": "turbo coverage",
"reset": "./scripts/reset-project.sh",
"generate-mcp": "tsx scripts/generate-mcp.ts",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.39.4",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "catalog:",
"@testing-library/react": "catalog:",
"@testing-library/user-event": "catalog:",
"@types/node": "^20.19.37",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "catalog:",
"babel-plugin-react-compiler": "1.0.0",
"dotenv": "^17.3.1",
"eslint": "^9",
"eslint-config-next": "16.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jsdom": "catalog:",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"turbo": "^2.8.20",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vitest": "catalog:"
},
"pnpm": {
"overrides": {
"@types/react": "$@types/react",
"@types/react-dom": "$@types/react-dom"
}
}
}