-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
117 lines (117 loc) · 4 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
{
"name": "venice",
"version": "0.0.0",
"private": true,
"repository": "[email protected]:usevenice/venice.git",
"license": "UNLICENSED",
"scripts": {
"web": "pnpm run --filter web dev",
"generate:docs": "pnpm run --filter app-config dev",
"docs": "cd docs && mintlify dev",
"lint": "eslint --ext .js,.ts,.tsx --cache .",
"mitm": "mitmweb --listen-port 3010 --web-port 3011 --mode reverse:http://localhost:3000",
"preinstall": "npx only-allow pnpm",
"test::ci": "pnpm run test --ci --forceExit --detectOpenHandles --runInBand",
"test::debug": "node --inspect-brk $(pnpm bin)/jest --runInBand --watch",
"test::watch": "pnpm run test --watch",
"test": "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_OR_WEBHOOK_URL",
"worker:setup": "tsx ./bin/venice setupWorker",
"worker:run": "tsx ./bin/venice runWorker",
"env:pull": "vercel env pull --environment production .env && vercel env pull --environment development .env.development"
},
"lint-staged": {
"**/*.{js,ts,tsx,json,css,yml,yaml}": "prettier --write",
"**/*.{js,ts,tsx}": "eslint --ext .js,.ts,.tsx --cache --fix"
},
"dependencies": {
"@usevenice/cli": "workspace:*"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.1.1",
"@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": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"@usevenice/sdk": "workspace:*",
"@usevenice/util": "workspace:*",
"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.2",
"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",
"openapi-typescript": "6.7.1",
"prettier": "3.1.0",
"prettier-plugin-packagejson": "2.4.6",
"prettier-plugin-sql": "0.16.0",
"prettier-plugin-tailwindcss": "0.5.7",
"ts-brand": "0.0.2",
"tsx": "3.12.2",
"turbo": "^1.10.16",
"typescript": "5.0.4"
},
"engines": {
"node": "20",
"pnpm": "8"
},
"pnpm": {
"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"
},
"neverBuiltDependencies": [
"libpq"
],
"overrides": {
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"@tanstack/react-query": "4.28.0",
"axios": "0.21.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"slonik": "30.3.1",
"esbuild": "0.17.5"
},
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"@nangohq/[email protected]": "patches/@[email protected]",
"@stoplight/[email protected]": "patches/@[email protected]",
"@lilyrose2798/[email protected]": "patches/@[email protected]"
},
"peerDependencyRules": {
"allowedVersions": {
"slonik": "30"
}
}
}
}