-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 4.01 KB
/
package.json
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@arrirpc/source",
"version": "0.68.0",
"author": {
"name": "joshmossas",
"url": "https://github.com/joshmossas"
},
"type": "module",
"license": "MIT",
"bugs": {
"url": "https://github.com/modiimedia/arri/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/modiimedia/arri.git"
},
"scripts": {
"typecheck": "nx run-many -t typecheck",
"format": "pnpm prettier --write **/*.ts **/**/*.ts **/**/**/*.ts **/**/**/**/*.ts **/**/**/**/**/*.ts **/*.json **/**/*.json **/**/**/*.json **/**/**/**/*.json **/**/**/**/**/*.json",
"test": "nx run-many -t test",
"test:skip-cache": "nx run-many -t test --skip-nx-cache",
"build": "nx run-many -t build --exclude=ts-playground,go-playground",
"build:skip-cache": "nx run-many -t build --skip-nx-cache --exclude=ts-playground,go-playground",
"compile": "nx run-many -t compile",
"compile:skip-cache": "nx run-many -t compile --skip-nx-cache",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint --fix",
"lint:skip-cache": "nx run-many -t lint --skip-nx-cache",
"lint:fix:skip-cache": "nx-run-many -t lint --skip-nx-cache",
"integration-tests": "jiti internal/scripts/run-integration-tests.ts",
"integration-tests:run-tests": "nx run-many -t integration-test --parallel=false",
"integration-tests:run-tests-parallel": "nx run-many -t integration-test",
"integration-tests:run-tests:affected": "nx affected -t integration-test --parallel=false",
"integration-tests:run-tests-parallel:affected": "nx affected -t integration-test",
"integration-tests:run-tests-parallel:exclude-flaky": "nx run-many -t integration-test --exclude test-client-kotlin,test-client-swift",
"integration-tests:run-tests-parallel:affected:exclude-flaky": "nx affected -t integration-test --exclude test-client-kotlin,test-client-swift",
"integration-tests-ts": "start-server-and-test 'integration-tests-ts:start-server' http-get://127.0.0.1:2020/status 'integration-tests:run-tests'",
"integration-tests-ts:start-server": "nx build-server test-server-ts && node tests/servers/ts/.output/server.mjs --host",
"integration-tests-ts:affected": "start-server-and-test 'integration-tests-ts:start-server' http-get://127.0.0.1:2020/status 'integration-tests:run-tests:affected'",
"integration-tests-go": "start-server-and-test 'integration-tests-go:start-server' http-get://127.0.0.1:2020/status 'integration-tests:run-tests-parallel:exclude-flaky'",
"integration-tests-go:start-server": "nx build-server test-server-go && tests/servers/go/.output/server",
"integration-tests-go:affected": "start-server-and-test 'integration-tests-go:start-server' http-get://127.0.0.1:2020/status 'integration-tests:run-tests-parallel:affected:exclude-flaky'",
"server-output-test": "jiti tests/server-output-test.ts",
"scaffold": "jiti internal/scripts/scaffold-package.ts",
"postversion": "jiti internal/scripts/version-sync.ts",
"gen-test-utils": "jiti internal/scripts/generate-test-utils.ts",
"publish-all": "pnpm run build && sh internal/scripts/publish-all.sh"
},
"private": true,
"devDependencies": {
"@eslint/js": "9.15.0",
"@sinclair/typebox": "^0.34.9",
"@types/lodash": "^4.17.13",
"@types/node": "22.10.1",
"@vitest/coverage-v8": "2.1.6",
"@vitest/ui": "2.1.6",
"benny": "^3.7.1",
"bun-types": "^1.1.37",
"citty": "^0.1.6",
"depcheck": "^1.4.7",
"esbuild": "0.24.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-n": "^17.14.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globby": "^14.0.2",
"jiti": "^2.4.0",
"lodash": "^4.17.21",
"nx": "20.1.3",
"pathe": "^1.1.2",
"prettier": "^3.4.1",
"scule": "^1.3.0",
"start-server-and-test": "^2.0.8",
"typescript": "5.5.4",
"typescript-eslint": "^8.16.0",
"unbuild": "^2.0.0",
"vite": "6.0.1",
"vitest": "2.1.6",
"zod": "^3.23.8"
},
"nx": {
"includedScripts": []
},
"packageManager": "[email protected]"
}