forked from supaglue-labs/supaglue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.33 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
{
"name": "supaglue",
"version": "0.9.7",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"packages/*",
"apps/*",
"docs"
],
"scripts": {
"postinstall": "husky install",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"build": "turbo run build",
"lint": "turbo run lint",
"generate": "turbo run generate",
"generate:clients": "turbo run generate:clients",
"bundle-openapi": "tsx scripts/validate_and_bundle_openapi.ts openapi/v1/crm/openapi.yaml openapi/v1/crm/openapi.bundle.json && tsx scripts/validate_and_bundle_openapi.ts openapi/v1/engagement/openapi.yaml openapi/v1/engagement/openapi.bundle.json && tsx scripts/validate_and_bundle_openapi.ts openapi/v1/mgmt/openapi.yaml openapi/v1/mgmt/openapi.bundle.json && tsx scripts/validate_and_bundle_openapi.ts openapi/v2/crm/openapi.yaml openapi/v2/crm/openapi.bundle.json && tsx scripts/validate_and_bundle_openapi.ts openapi/v2/engagement/openapi.yaml openapi/v2/engagement/openapi.bundle.json && tsx scripts/validate_and_bundle_openapi.ts openapi/v2/mgmt/openapi.yaml openapi/v2/mgmt/openapi.bundle.json"
},
"lint-staged": {
"**/*.{ts,tsx}": "tsc-files --noEmit",
"**/*.{ts,tsx,js}": [
"eslint",
"prettier --write"
]
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@tsconfig/node18": "^1.0.1",
"@types/eslint": "^8",
"@types/prettier": "^2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-prisma": "^4.12.0",
"tsc-files": "^1.1.3",
"tsx": "^3.12.3",
"turbo": "^1.10.1",
"typescript": "^4.9.5"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"api": "workspace:^",
"posthog-docusaurus": "^2.0.0",
"posthog-node": "^2.5.4",
"sync-worker": "workspace:^",
"workspace": "^0.0.1-preview.1"
},
"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"
}
}