-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.61 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.61 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": "my-cool-proxy-monorepo",
"private": true,
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm build && pnpm --filter @karashiiro/my-cool-proxy dev",
"test": "vitest run",
"test:unit": "vitest run --exclude '**/e2e/**'",
"test:e2e": "pnpm build && vitest run apps/gateway/src/e2e",
"test:e2e:http": "pnpm build && vitest run apps/gateway/src/e2e/http",
"test:e2e:stdio": "pnpm build && vitest run apps/gateway/src/e2e/stdio",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"typecheck": "pnpm -r typecheck",
"check": "pnpm run lint && pnpm run typecheck && pnpm run test"
},
"dependencies": {
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@suites/di.inversify": "4.0.0-alpha.0",
"@suites/doubles.vitest": "4.0.0-beta.0",
"@suites/unit": "4.0.0-beta.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-sonarjs": "^4.0.0",
"eslint-plugin-unicorn": "^63.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^16.5.0",
"prettier": "^3.7.4",
"typescript-eslint": "^8.50.0",
"vitest": "^4.0.16"
},
"packageManager": "pnpm@10.26.0+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402"
}