-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1006 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1006 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
33
34
35
36
37
38
{
"name": "proxy-development-server",
"version": "1.0.0",
"description": "",
"private": "true",
"type": "module",
"scripts": {
"test": "dotnet test",
"lint": "pnpm run typecheck && pnpm run eslint:check && pnpm run prettier:check",
"lint:fix": "pnpm run typecheck && pnpm run eslint:fix && pnpm run prettier:fix",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier:check": "prettier --list-different .",
"prettier:fix": "prettier --write .",
"typecheck": "tsc -b"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@darkpatternsdigital/eslint-config": "*",
"@darkpatternsdigital/prettier-config": "*",
"@darkpatternsdigital/tsconfigs": "*",
"@eslint/compat": "^1.1.1",
"@types/node": "^22.5.0",
"eslint": "9.13.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
},
"packageManager": "pnpm@9.10.0",
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint-plugin-import@2.29.1>eslint": ">=9"
}
}
}
}