-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.96 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.96 KB
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
{
"name": "fastify-template",
"version": "1.0.0",
"private": false,
"description": "",
"license": "MIT",
"type": "module",
"main": "dist/app.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "rm -rf dist && bun build src/app.ts --outdir dist --target bun --format esm --external @prisma/client --minify",
"dev": "ENV=development LOGS=development bun --watch src/app.ts",
"doc": "typedoc",
"integrity": "./scripts/integrity.sh",
"lint": "eslint --report-unused-disable-directives . --cache",
"lint:fix": "bun run sort ; eslint --report-unused-disable-directives . --cache --fix",
"migrate": "bunx prisma migrate deploy",
"prepare": "husky",
"prisma:generate": "bunx prisma generate",
"sort": "./node_modules/stijnklomp-linting-formatting-config/sortJson.sh ./tsconfig.json ./test/tsconfig.json ./.lintstagedrc.json",
"start": "bun dist/app.js",
"test": "ENV=test LOGS=test bun test test/unit",
"test:acceptance": "ENV=test LOGS=test bun test test/acceptance",
"test:coverage": "ENV=test LOGS=test bun test --coverage test/unit --coverage-reporter text",
"test:feature": "ENV=test LOGS=test bun test test/feature",
"test:unit": "ENV=test LOGS=test bun test test/unit",
"test:unit:ci": " ENV=test LOGS=test bun test --coverage test/unit --cov-config test.reporter --coverage-reporter text --coverage-reporter lcov",
"test:unit:coverage": "ENV=test LOGS=test bun test --coverage test/unit --coverage-reporter text",
"test:unit:coverage:html": "docker build -t bun-coverage -f test/unit/coverage/Dockerfile . && docker run -it --rm -u $(id -u):$(id -g) -v $(pwd):/app -w /app bun-coverage"
},
"dependencies": {
"@fastify/helmet": "^13.0.2",
"@fastify/sensible": "^6.0.4",
"@fastify/swagger": "^9.7.0",
"@fastify/type-provider-typebox": "^6.1.0",
"@opentelemetry/api": "^1.9.0",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@sinclair/typebox": "^0.34.48",
"amqplib": "^0.10.9",
"fastify": "^5.8.2",
"fastify-plugin": "^5.1.0",
"fluent-json-schema": "^6.0.0",
"globals": "^17.4.0",
"hyperid": "^3.3.0",
"pg": "^8.20.0",
"readable-stream": "^4.7.0",
"redis": "^5.11.0",
"stijnklomp-linting-formatting-config": "^7.0.4"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.1",
"@socketsecurity/bun-security-scanner": "^1.1.2",
"@types/amqplib": "^0.10.8",
"@types/bun": "^1.3.10",
"@types/node": "^25.3.5",
"bun-mock-prisma": "^1.2.1",
"eslint": "^10.0.3",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-jsonc": "^3.1.1",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-yml": "^3.3.1",
"husky": "^9.1.7",
"json-sort-cli": "^4.1.3",
"lint-staged": "^16.3.3",
"micromatch": "^4.0.8",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.1",
"prettier-plugin-packagejson": "^3.0.2",
"prisma": "^7.5.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"engines": {
"bun": ">=1.3.8"
}
}