-
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) 路 1.77 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) 路 1.77 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": "project-template",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "next dev --turbopack",
"dev:web": "next dev --no-turbo",
"build": "next build --turbopack",
"start": "next start",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -p tsconfig.json --noEmit",
"format": "prettier -w .",
"prepare": "husky"
},
"dependencies": {
"next": "15.5.2",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.0.2",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.34.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-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.3.0",
"husky": "^9.1.6",
"jsdom": "^26.1.0",
"lint-staged": "^15.2.10",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"typescript": "^5",
"typescript-eslint": "^8.41.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@9.0.0",
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,md,mdx,css,scss,html,yml,yaml}": [
"prettier -w"
],
"src/**/*.{ts,tsx,js,jsx}": [
"eslint --fix --max-warnings=0"
]
}
}