-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.23 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.23 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
{
"name": "my-packages",
"version": "0.0.0",
"license": "MIT",
"type": "commonjs",
"scripts": {
"format": "prettier --write .",
"check-lint-rules": "npx eslint-config-prettier src/index.ts",
"test": "pnpm -r test",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"lint:core": "pnpm -F core lint",
"lint:api": "pnpm -F api lint",
"build:core": "pnpm -F core build",
"build:api": "pnpm -F api build"
},
"private": true,
"devDependencies": {
"@kennethkeim/eslint-config": "workspace:^",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"eslint": "^8.0.1",
"eslint-plugin-sonarjs": "^0.19.0",
"prettier": "^2.6.2"
},
"packageManager": "pnpm@10.18.1",
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3",
"micromatch@<4.0.8": ">=4.0.8",
"rollup@>=4.0.0 <4.22.4": ">=4.22.4",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"esbuild@<=0.24.2": ">=0.25.0",
"word-wrap@<1.2.4": ">=1.2.4",
"@babel/helpers@<7.26.10": ">=7.26.10",
"cross-spawn@>=7.0.0 <7.0.5": ">=7.0.5",
"brace-expansion@>=1.0.0 <=1.1.11": ">=1.1.12",
"brace-expansion@>=2.0.0 <=2.0.1": ">=2.0.2"
},
"onlyBuiltDependencies": [
"esbuild"
]
}
}