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.2+sha512.a90faf6feeab71ad6c6e57f94e0fe1a12f5dcc22cd754db40ae9593eb6a3e0b6b12e3540218bb37ae083404b1f2ce6db2a4121e979829b4aff94b99f49da1cf8",
"devDependencies": {
"@eslint/compat": "2.0.5",
"@eslint/js": "10.0.1",
"@playwright/test": "1.59.1",
"@types/node": "24.12.2",
"@vitest/coverage-v8": "catalog:default",
"eslint": "10.2.1",
"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.1.1",
"globals": "17.5.0",
"husky": "9.1.7",
"knip": "6.5.0",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"turbo": "2.9.6",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2",
"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"
}
}