-
Notifications
You must be signed in to change notification settings - Fork 276
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 889 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 889 Bytes
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
{
"private": true,
"name": "proxy-agent-monorepo",
"packageManager": "pnpm@10.30.3",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"test": "turbo run test",
"test-e2e": "turbo run test-e2e",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm publish -r --provenance && changeset tag"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-turbo": "^1.9.3",
"prettier": "^2.8.8",
"semver": "^7.6.3",
"turbo": "^1.10.8",
"vitest": "^4.0.18"
}
}