-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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": "prisma-with-open-telemetry",
"version": "1.0.0",
"description": "",
"main": "dist/main.js",
"private": true,
"scripts": {
"initialize": "make initialize",
"build": "bun build ./src/main.ts --outdir ./dist --minify-whitespace --minify-syntax --target bun",
"start": "bun .",
"prepare": "is-ci || husky"
},
"prisma": {
"seed": "bun prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^1.25.1",
"@opentelemetry/exporter-trace-otlp-http": "^0.52.1",
"@opentelemetry/exporter-trace-otlp-proto": "^0.52.1",
"@opentelemetry/instrumentation": "^0.52.1",
"@opentelemetry/resources": "^1.25.1",
"@opentelemetry/sdk-trace-base": "^1.25.1",
"@opentelemetry/sdk-trace-node": "^1.25.1",
"@opentelemetry/semantic-conventions": "^1.25.1",
"@prisma/client": "^5.17.0",
"@prisma/instrumentation": "5.17.0",
"is-ci": "^3.0.1",
"prisma": "^5.17.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/cz-commitlint": "^19.2.0",
"@commitlint/types": "^19.0.3",
"@types/eslint": "^8.56.10",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0-0",
"@typescript-eslint/parser": "^7.18.0",
"commitizen": "^4.3.0",
"editorconfig": "^2.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-only-error": "^1.0.2",
"eslint-plugin-perfectionist": "^2.11.0",
"eslint-plugin-promise": "^6.4.0",
"eslint-plugin-unused-imports": "^4.0.0",
"husky": "^9.0.11",
"inquirer": "^9.0.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prisma": "5.17.0",
"rimraf": "^6.0.1",
"ts-prune": "0.10.3",
"typescript": "^5.5.3"
}
}