-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.03 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.03 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
65
66
67
68
69
70
71
72
{
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next",
"fix": "npm-run-all --continue-on-error \"fix:*\"",
"fix:eslint": "next typegen && eslint --max-warnings=0 --fix",
"fix:knip": "knip --fix --allow-remove-files",
"fix:markdownlint": "markdownlint --dot --fix .",
"fix:pnpm-dedupe": "pnpm dedupe",
"fix:prettier": "prettier --write .",
"lint": "npm-run-all --continue-on-error \"lint:*\"",
"lint:eslint": "next typegen && eslint --max-warnings=0",
"lint:knip": "knip",
"lint:markdownlint": "markdownlint --dot .",
"lint:pnpm-dedupe": "pnpm dedupe --check",
"lint:prettier": "prettier --check .",
"lint:tsc": "next typegen && tsc --noEmit",
"prepare": "husky",
"start": "next start"
},
"lint-staged": {
"**": [
"prettier --write"
]
},
"prettier": "@kachkaev/prettier-config",
"dependencies": {
"playwright": "1.59.1"
},
"devDependencies": {
"@bprogress/core": "1.3.4",
"@bprogress/next": "3.2.12",
"@formatjs/intl": "4.1.6",
"@kachkaev/eslint-config-next": "1.1.1",
"@kachkaev/markdownlint-config": "1.0.1",
"@kachkaev/prettier-config": "2.2.1",
"@next/eslint-plugin-next": "16.2.4",
"@t3-oss/env-nextjs": "0.13.11",
"@tailwindcss/postcss": "4.2.4",
"@tsconfig/next": "2.0.6",
"@tsconfig/node-ts": "23.6.4",
"@tsconfig/strictest": "2.0.8",
"@types/js-yaml": "4.0.9",
"@types/node": "24.12.2",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"eslint": "9.39.4",
"husky": "9.1.7",
"js-yaml": "4.1.1",
"knip": "6.6.2",
"lint-staged": "16.4.0",
"markdownlint-cli": "0.48.0",
"next": "16.2.4",
"npm-run-all2": "8.0.4",
"postcss": "8.5.10",
"prettier": "3.8.3",
"react": "19.2.5",
"react-dom": "19.2.5",
"server-only": "0.0.1",
"tailwindcss": "4.2.4",
"typescript": "6.0.3",
"zod": "4.3.6"
},
"packageManager": "pnpm@10.33.2",
"postcss": {
"plugins": {
"@tailwindcss/postcss": {}
}
}
}