-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.56 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
{
"name": "opensdks",
"version": "0.0.0",
"private": true,
"repository": "git@github.com:tonyxiao/openSDKs.git",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"typecheck": "tsc --project ./ --noEmit",
"lint": "eslint --ext .js,.ts,.tsx,.mdx --cache .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test::ci": "pnpm run test --ci --forceExit --detectOpenHandles --runInBand",
"test::watch": "pnpm run test --watch",
"test::debug": "NODE_OPTIONS=--experimental-vm-modules node --inspect-brk $(pnpm bin)/jest --runInBand --watch",
"commitlint": "commitlint --edit",
"prepare": "husky install",
"sync-manifests": "npx tsx ./packages/cli/syncManifests.ts ./ ./master-manifest.js",
"build-all": "turbo run build --filter '!website'",
"publish-no-git-checks": "pnpm -r publish --no-git-checks",
"prettier:pkgjson": "pnpm prettier --write ./sdks/*/package.json ./packages/*/package.json"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,css,yml,yaml}": "prettier --write",
"**/*.{js,ts,tsx}": "eslint --ext .js,.ts,.tsx --cache --fix"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@commitlint/types": "^18.4.3",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@jest/globals": "^29.7.0",
"@opensdks/cli": "workspace:*",
"@opensdks/util-zod": "workspace:*",
"@tsconfig/strictest": "^2.0.2",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.2",
"@types/prettier": "^3.0.0",
"@types/swagger2openapi": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"alias-hq": "^6.2.3",
"change-case": "^5.4.4",
"esbuild": "^0.19.9",
"esbuild-jest": "^0.5.0",
"eslint": "^8.55.0",
"eslint-plugin-codegen": "^0.21.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-expect-type": "^0.2.3",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-mdx": "^3.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^49.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"lint-staged": "^15.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.0",
"prettier-plugin-packagejson": "^2.4.6",
"prettier-plugin-sql": "^0.17.0",
"swagger2openapi": "^7.0.8",
"tsx": "^4.6.2",
"turbo": "^1.10.16",
"type-fest": "^4.8.3",
"typescript": "^5.3.2",
"yaml": "^2.3.4"
},
"packageManager": "pnpm@9.9.0"
}