-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.41 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.41 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "iracing-data-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"codegen": "pnpm codegen:openapi && pnpm codegen:client",
"codegen:client": "pnpm -w --parallel --stream '/^codegen:client:api:.+$/'",
"codegen:client:api": "pnpm -w --parallel --stream '/^codegen:client:api:.+$/'",
"codegen:client:api:axios": "./scripts/openapi-generator-axios.sh",
"codegen:client:api:fetch": "./scripts/openapi-generator-fetch.sh",
"codegen:client:api:rust": "./scripts/openapi-generator-rust.sh",
"codegen:openapi": "pnpm -w --parallel --stream '/^codegen:openapi:.+$/'",
"codegen:openapi:api": "iracing-api-openapi -o ./openapi -f iracing.json",
"codegen:openapi:oauth": "iracing-oauth-api-openapi -o ./openapi -f oauth.json",
"lint:fix": "pnpm lint --fix",
"lint": "eslint .",
"style:fix": "prettier --write .",
"style": "prettier --check .",
"format": "pnpm lint:fix && pnpm style:fix",
"build": "pnpm --recursive --stream build",
"dev": "NODE_ENV=development pnpm --stream '/^dev:.+$/'",
"dev:tsc": "tsc --build tsconfig.json --watch",
"dev:pkg": "pnpm --recursive --parallel --stream dev",
"test": "pnpm --recursive --if-present test"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@iracing-data/api-schema-to-openapi": "workspace:*",
"@iracing-data/oauth-schema-to-openapi": "workspace:*",
"@openapitools/openapi-generator-cli": "^2.31.1",
"@types/google-protobuf": "^3.15.12",
"@types/lodash": "^4.17.15",
"@types/node": "^24",
"@typescript-eslint/eslint-plugin": "8.49.0",
"@typescript-eslint/parser": "8.49.0",
"dotenv": "17.2.3",
"eslint": "^9",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "5.5.5",
"prettier": "3.7.3",
"prettier-config-standard": "7.0.0",
"protoc-gen-grpc-web": "^1.5.0",
"protoc-gen-ts": "0.8.7",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"workspaces": [
"apps/*",
"packages/*",
"packages/api/*",
"packages/api/client/*",
"packages/events/*",
"packages/helpers/*",
"packages/oauth/*",
"packages/telemetry/*",
"packages/telemetry/client/*"
],
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
}