forked from ksefuj/ksefuj
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.93 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.93 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
{
"name": "ksefuj",
"private": true,
"type": "module",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ksefuj/ksefuj.git"
},
"homepage": "https://ksefuj.to",
"bugs": {
"url": "https://github.com/ksefuj/ksefuj/issues"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"dev": "pnpm --filter @ksefuj/web dev",
"build": "pnpm --filter @ksefuj/validator build && pnpm --filter @ksefuj/web build",
"test": "pnpm -r test",
"test:integration": "vitest --run --project integration",
"test:fixtures": "vitest --run --project integration",
"test:watch": "pnpm -r test:watch",
"test:coverage": "pnpm -r test:coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "pnpm -r typecheck",
"validate": "pnpm --filter @ksefuj/validator validate",
"validate:seo": "tsx scripts/validate-seo.ts",
"update-schemas": "tsx scripts/update-schemas.ts",
"prepare": "husky install",
"postinstall": "pnpm --filter @ksefuj/validator build",
"pre-commit": "pnpm format:check && pnpm lint && pnpm typecheck",
"commit": "cz"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@eslint/js": "^9.0.0",
"@next/eslint-plugin-next": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^2.0.0",
"@vitest/ui": "^2.0.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^17.4.0",
"husky": "^9.0.0",
"prettier": "^3.4.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^2.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}