-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
94 lines (94 loc) · 3.57 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
{
"name": "@dbos-inc/dbos-sdk",
"version": "0.0.0-placeholder",
"description": "A Typescript framework built on the database",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dbos-inc/dbos-transact"
},
"homepage": "https://docs.dbos.dev/",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc --project tsconfig.build.json && npm run --workspaces build",
"build-fdb": "tsc --project tsconfig.build-fdb.json && npm run --workspaces build",
"lint": "rm -rf packages/create/templates/hello-prisma/node_modules/ && eslint --ignore-pattern src/foundationdb/ --ignore-pattern tests/foundationdb/ --ignore-pattern **/coverage/ .",
"lint-fdb": "rm -rf packages/create/templates/hello-prisma/node_modules/ && eslint --ignore-pattern **/coverage/ .",
"setversion": "npm run --workspaces setversion && grunt setversion",
"test": "npm run build && rm -rf packages/create/templates/hello-prisma/node_modules/ && npm run --workspaces test && npx prisma generate --schema tests/prisma/schema.prisma && jest --coverage --collectCoverageFrom='src/**/*' --collectCoverageFrom='!src/foundationdb/**/*' --detectOpenHandles --testPathIgnorePatterns=examples/* --testPathIgnorePatterns=packages/* --testPathIgnorePatterns=tests/foundationdb/*",
"test-fdb": "npm run build-fdb && rm -rf packages/create/templates/hello-prisma/node_modules/ && npm run --workspaces test && npx prisma generate --schema tests/prisma/schema.prisma && jest --runInBand --coverage"
},
"bin": {
"dbos": "./dist/src/dbos-runtime/cli.js",
"dbos-sdk": "./dist/src/dbos-runtime/cli.js"
},
"devDependencies": {
"@fastify/express": "^4.0.1",
"@nestjs/common": "^10.4.7",
"@prisma/client": "^5.3.1",
"@types/co-body": "^6.1.3",
"@types/koa": "^2.15.0",
"@types/koa__cors": "^5.0.0",
"@types/koa__router": "^12.0.4",
"@types/lodash": "^4.14.202",
"@types/node": "^20.11.25",
"@types/pg": "^8.11.2",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^8.0.0-alpha.30",
"@typescript-eslint/parser": "^8.0.0-alpha.30",
"axios": "^1.7.4",
"drizzle-orm": "^0.32.2",
"eslint": "^9.4.0",
"fastify": "^5.1.0",
"jest": "^29.7.0",
"prisma": "^5.1.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"typeorm": "^0.3.17",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0-alpha.30"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"@koa/bodyparser": "5.0.0",
"@koa/cors": "5.0.0",
"@koa/router": "13.1.0",
"@opentelemetry/api": "1.8.0",
"@opentelemetry/api-logs": "0.49.1",
"@opentelemetry/core": "1.22.0",
"@opentelemetry/exporter-logs-otlp-proto": "0.49.1",
"@opentelemetry/exporter-trace-otlp-proto": "0.49.1",
"@opentelemetry/resources": "1.22.0",
"@opentelemetry/sdk-logs": "0.49.1",
"@opentelemetry/sdk-trace-base": "1.22.0",
"@opentelemetry/semantic-conventions": "1.22.0",
"ajv": "8.13.0",
"commander": "12.0.0",
"kafkajs": "^2.2.4",
"knex": "3.1.0",
"koa": "^2.15.0",
"lodash": "4.17.21",
"openapi-types": "12.1.3",
"pg": "8.11.3",
"pg-protocol": "^1.6.1",
"reflect-metadata": "^0.2.2",
"serialize-error": "8.1.0",
"uuid": "9.0.1",
"validator": "^13.12.0",
"winston": "3.12.0",
"winston-transport": "4.7.0",
"yaml": "2.4.1"
},
"peerDependencies": {
"@types/koa": "^2.15.0",
"koa": "^2.15.0"
},
"optionalDependencies": {
"foundationdb": "^2.0.1"
}
}