-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.82 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
61
62
63
64
65
66
{
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "next",
"fix": "npm-run-all --continue-on-error \"fix:*\"",
"fix:eslint": "next lint --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": "next lint",
"lint:markdownlint": "markdownlint --dot .",
"lint:pnpm-dedupe": "pnpm dedupe --check",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit --project .",
"prepare": "husky install",
"start": "next start"
},
"lint-staged": {
"**": [
"prettier --write"
]
},
"dependencies": {
"playwright": "1.46.1"
},
"devDependencies": {
"@formatjs/intl": "3.0.4",
"@kachkaev/eslint-config-react": "0.6.0",
"@kachkaev/markdownlint-config": "0.5.0",
"@kachkaev/prettier-config": "2.0.0",
"@next/eslint-plugin-next": "15.1.3",
"@tsconfig/esm": "1.0.5",
"@tsconfig/next": "2.0.3",
"@tsconfig/strictest": "2.0.5",
"@types/js-yaml": "4.0.9",
"@types/node": "20.17.11",
"@types/nprogress": "0.2.3",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"autoprefixer": "10.4.20",
"axios": "1.7.9",
"envalid": "8.0.0",
"eslint": "8.57.1",
"eslint-plugin-tailwindcss": "3.17.5",
"husky": "9.1.7",
"js-yaml": "4.1.0",
"lint-staged": "15.3.0",
"markdownlint-cli": "0.43.0",
"next": "15.1.3",
"npm-run-all2": "7.0.2",
"nprogress": "0.2.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"server-only": "0.0.1",
"sharp": "0.33.5",
"tailwindcss": "3.4.17",
"typescript": "5.7.2",
"zod": "3.24.1"
},
"packageManager": "pnpm@9.9.0"
}