This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
69 lines (69 loc) · 1.87 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
{
"name": "supaglue",
"version": "0.25.7",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"docs"
],
"scripts": {
"postinstall": "husky install",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:integration": "turbo run test:integration",
"typecheck": "turbo typecheck",
"build": "turbo run build",
"lint": "turbo run lint",
"generate": "turbo run generate",
"bundle-openapi": "./scripts/bundle_openapi_specs.sh",
"prisma-studio": "yarn workspace @supaglue/db prisma studio"
},
"lint-staged": {
"**/*.{ts,tsx,js}": [
"eslint",
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@jest/globals": "^29.7.0",
"@quobix/vacuum": "^0.3.13",
"@tsconfig/node18": "^1.0.1",
"@types/eslint": "^8",
"@types/jest": "^29.5.5",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-runner-groups": "^2.2.0",
"lint-staged": "^13.1.2",
"oas-normalize": "^11.0.1",
"prettier": "^3.1.0",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-prisma": "^5.0.0",
"ts-jest": "^29.1.1",
"tsx": "^3.12.3",
"turbo": "^1.11.1",
"typescript": "^4.9.5"
},
"engines": {
"node": "18.x"
},
"resolutions": {
"qs": "6.9.7",
"webpack": "5.76.0",
"trim": "0.0.3",
"got": "11.8.5",
"vm2": "3.9.18",
"yaml": "2.2.2",
"async": "3.2.4",
"@hubspot/[email protected]": "patch:@hubspot/api-client@npm%3A9.1.0#./.yarn/patches/@hubspot-api-client-npm-9.1.0-1ec9bcc0df.patch"
}
}