-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.68 KB
/
package.json
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
{
"private": true,
"license": "BSD-3-Clause",
"type": "module",
"scripts": {
"build": "next build",
"dev": "next dev",
"fix": "npm-run-all --continue-on-error \"fix:*\"",
"fix:eslint": "eslint --fix .",
"fix:markdownlint": "markdownlint --dot --fix .",
"fix:pnpm-dedupe": "pnpm dedupe",
"fix:prettier": "prettier --write .",
"lint": "npm-run-all --continue-on-error \"lint:*\"",
"lint:eslint": "eslint .",
"lint:markdownlint": "markdownlint --dot .",
"lint:pnpm-dedupe": "pnpm dedupe --check",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --project .",
"postinstall": "husky install",
"start": "next start"
},
"lint-staged": {
"**": [
"eslint --fix",
"markdownlint --fix",
"prettier --write"
]
},
"dependencies": {
"@vercel/analytics": "1.3.2",
"hosted-git-info": "8.0.0",
"lru-cache": "10.4.3",
"next": "15.0.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"styled-components": "6.1.13",
"styled-normalize": "8.1.1",
"url": "0.11.4"
},
"devDependencies": {
"@kachkaev/eslint-config-react": "0.6.0",
"@kachkaev/markdownlint-config": "0.5.0",
"@next/eslint-plugin-next": "15.0.3",
"@tsconfig/next": "2.0.3",
"@tsconfig/strictest": "2.0.5",
"@types/hosted-git-info": "3.0.5",
"@types/node": "22.10.1",
"@types/react": "18.3.12",
"eslint": "8.57.1",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"markdownlint-cli": "0.43.0",
"npm-run-all2": "7.0.1",
"prettier": "3.4.1",
"prettier-plugin-packagejson": "2.5.6",
"prettier-plugin-sh": "0.14.0",
"typescript": "5.7.2"
},
"packageManager": "[email protected]"
}