-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
{
"name": "@monaxlabs/mdk-lib",
"version": "1.0.16",
"description": "Monax Development Kit - Lib",
"type": "module",
"license": "Apache-2.0",
"keywords": [],
"repository": "git@github.com:monax/mdk-lib.git",
"author": "Monax Labs <hello@monax.io>",
"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",
"./helpers": "./dist/helpers/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",
"test": "vitest --run",
"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.17",
"@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.24.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@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": "^3.0.4"
}
}