-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
119 lines (119 loc) · 4.35 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "openint",
"version": "0.0.0",
"private": true,
"repository": "[email protected]:openint-dev/openint.git",
"license": "UNLICENSED",
"scripts": {
"web": "pnpm run --filter web dev",
"generate:docs": "pnpm run --filter app-config dev",
"generate:connectorsList": "npx tsx apps/app-config/_generateConnectorLists.ts",
"docs": "cd docs && mintlify dev",
"lint": "eslint --ext .js,.ts,.tsx --cache . --quiet --ignore-pattern /gateway",
"mitm": "mitmweb --listen-port 3010 --web-port 3011 --mode reverse:http://localhost:3000",
"preinstall": "npx only-allow pnpm",
"test::ci": "NODE_OPTIONS=--experimental-vm-modules pnpm run test --ci --forceExit --detectOpenHandles --runInBand",
"test::debug": "NODE_OPTIONS=--experimental-vm-modules node --inspect-brk $(pnpm bin)/jest --runInBand --watch",
"test::watch": "pnpm run test --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"prepare": "husky install",
"typecheck": "tsc --project . --noEmit",
"validate": "run-s --silent typecheck lint test",
"venice": "tsx ./bin/venice",
"migration": "tsx ./apps/cli/pgMigrator-cli",
"pgdump": "pg_dump --schema public --schema-only --no-owner --exclude-schema=graphile_migrate --file=apps/web/schema.sql $POSTGRES_URL",
"worker:setup": "tsx ./bin/venice setupWorker",
"worker:run": "tsx ./bin/venice runWorker",
"env:pull": "vercel env pull --environment development .env.dev && vercel env pull --environment preview .env.pre && vercel env pull --environment production .env.prod"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,css,yml,yaml}": "prettier --write",
"**/*.{js,ts,tsx}": "eslint --ext .js,.ts,.tsx --cache --fix"
},
"dependencies": {
"@openint/cli": "workspace:*"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@jest/globals": "^29.7.0",
"@openint/sdk": "workspace:*",
"@openint/util": "workspace:*",
"@roarr/cli": "5.7.0",
"@tsconfig/strictest": "1.0.2",
"@types/jest": "29.5.10",
"@types/node": "18.11.18",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"esbuild": "0.17.5",
"esbuild-jest": "0.5.0",
"eslint": "8.23.0",
"eslint-config-next": "14.0.2",
"eslint-plugin-codegen": "0.16.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-tailwindcss": "3.12.1",
"eslint-plugin-unicorn": "43.0.2",
"husky": "8.0.1",
"jest": "30.0.0-alpha.6",
"jest-date-mock": "1.0.8",
"jest-watch-typeahead": "2.2.2",
"lint-staged": "13.0.3",
"mintlify": "4.0.59",
"ngrok": "5.0.0-beta.2",
"npm-run-all": "4.1.5",
"prettier": "3.1.0",
"prettier-plugin-packagejson": "2.5.2",
"prettier-plugin-sql": "0.18.1",
"prettier-plugin-tailwindcss": "0.6.6",
"ts-brand": "0.0.2",
"tsx": "3.12.2",
"turbo": "^1.10.16",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "20"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"slonik": "30"
}
},
"neverBuiltDependencies": [
"libpq"
],
"allowedDeprecatedVersions": {
"core-js": "3.6.5",
"resolve-url": "0.2.1",
"sane": "4.1.0",
"shvl": "2.0.3",
"source-map-resolve": "0.5.3",
"source-map-url": "0.4.1",
"urix": "0.1.0"
},
"overrides": {
"@tanstack/react-query": "4.28.0",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"axios": "0.21.1",
"esbuild": "0.17.5",
"react": "18.3.1",
"react-dom": "18.3.1",
"slonik": "30.3.1"
},
"patchedDependencies": {
"@jsonurl/[email protected]": "patches/@[email protected]",
"@lilyrose2798/[email protected]": "patches/@[email protected]",
"@nangohq/[email protected]": "patches/@[email protected]",
"@stoplight/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}