forked from anuraghazra/github-readme-stats
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.53 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.53 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
{
"name": "@stats-organization/root",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319",
"devDependencies": {
"@eslint/compat": "2.0.5",
"@eslint/js": "10.0.1",
"@playwright/test": "1.59.1",
"@types/node": "24.12.0",
"@vitest/coverage-v8": "catalog:default",
"eslint": "10.1.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-jsdoc": "62.9.0",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"globals": "17.5.0",
"husky": "9.1.7",
"knip": "6.4.1",
"lint-staged": "16.4.0",
"prettier": "3.8.2",
"turbo": "2.9.6",
"typescript": "5.9.3",
"typescript-eslint": "8.58.1",
"vitest": "catalog:default"
},
"scripts": {
"prepare": "husky",
"build:packages": "turbo run build --filter=./packages/*",
"build:frontend": "turbo run build --filter=./apps/frontend",
"dev:frontend": "pnpm run --filter=./apps/frontend dev",
"test": "vitest",
"test:coverage": "vitest --config vitest.config.coverage.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "turbo run lint",
"lint:eslint": "eslint",
"lint:eslint:fix": "eslint --fix",
"lint:knip": "knip",
"typecheck": "turbo run typecheck"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,json,jsonc,yaml,yml}": "prettier --write"
}
}