-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
{
"name": "@monaxlabs/mdk-lib",
"version": "1.0.12",
"description": "Monax Development Kit - Lib",
"type": "module",
"license": "Apache-2.0",
"keywords": [],
"repository": "[email protected]:monax/mdk-lib.git",
"author": "Monax Labs <[email protected]>",
"main": "dist/index.js",
"files": [
"LICENSE",
"package.json",
"dist"
],
"exports": {
"./config": "./dist/config/index.js",
"./context": "./dist/context/index.js",
"./db": "./dist/db/index.js",
"./loop": "./dist/loop/index.js",
"./repos": "./dist/repos/index.js",
"./services": "./dist/services/index.js",
"./telemetry": "./dist/telemetry/index.js"
},
"scripts": {
"build": "pnpm build:ts",
"build:ts": "tsc --build",
"format": "biome format . --write",
"lint": "biome check . && tsc --noEmit",
"prepack": "pnpm i && pnpm build",
"db:types": "pgtyped -c pgtyped.json"
},
"dependencies": {
"@google-cloud/storage": "^7.11.0",
"@monaxlabs/mdk-schema": "^1.0.14",
"@pgtyped/runtime": "^2.3.0",
"@segment/analytics-node": "^2.1.2",
"@sentry/node": "^7.114.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonpath-plus": "^8.1.0",
"nanoid": "^5.0.7",
"pg": "^8.11.5",
"pg-types": "^4.0.2",
"prom-client": "^15.1.2",
"zod": "3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@pgtyped/cli": "^2.3.0",
"@types/express": "^4.17.21",
"@types/node": "^20.12.11",
"@types/pg": "^8.11.6",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
}
}