-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.95 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
{
"name": "@chubbyts/petstore",
"version": "1.0.0",
"description": "An api skeleton using mongodb for chubbyts-framework.",
"type": "module",
"keywords": [
"chubbyts",
"framework",
"skleton",
"api",
"mongodb"
],
"author": "Dominik Zogg",
"license": "MIT",
"repository": "chubbyts/petstore",
"scripts": {
"build": "rm -Rf dist && tsc",
"command": "ts-node bin/console.ts",
"cs-fix": "prettier --write bin bootstrap config src tests *.js *.ts",
"cs": "prettier --check bin bootstrap config src tests *.js *.ts",
"develop:debug": "tsx watch --inspect=0.0.0.0:8888 bootstrap/index.ts",
"develop": "tsx watch bootstrap/index.ts",
"infection": "stryker run",
"lint-fix": "eslint bin bootstrap config src tests *.js *.ts --fix",
"lint": "eslint bin bootstrap config src tests",
"start:debug": "pnpm install && pnpm run lint-fix && pnpm run cs-fix && pnpm run develop:debug",
"start": "pnpm install && pnpm run lint-fix && pnpm run cs-fix && pnpm run develop",
"test:integration": "vitest --config vitest.integration.config.js",
"test": "vitest --config vitest.config.js"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "all"
},
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.3.0",
"@chubbyts/chubbyts-api": "^4.2.1",
"@chubbyts/chubbyts-decode-encode": "^1.4.1",
"@chubbyts/chubbyts-dic": "^1.3.1",
"@chubbyts/chubbyts-dic-config": "^1.3.1",
"@chubbyts/chubbyts-dic-types": "^1.3.1",
"@chubbyts/chubbyts-framework": "^1.10.1",
"@chubbyts/chubbyts-framework-router-path-to-regexp": "^1.5.2",
"@chubbyts/chubbyts-http": "^1.3.1",
"@chubbyts/chubbyts-http-cors": "^1.3.1",
"@chubbyts/chubbyts-http-error": "^2.4.1",
"@chubbyts/chubbyts-http-node-bridge": "^1.3.1",
"@chubbyts/chubbyts-http-types": "^1.3.1",
"@chubbyts/chubbyts-log-types": "^1.4.3",
"@chubbyts/chubbyts-mongodb": "^1.5.1",
"@chubbyts/chubbyts-negotiation": "^3.3.1",
"@chubbyts/chubbyts-pino-adapter": "^1.4.1",
"commander": "^13.0.0",
"mongodb": "^6.12.0",
"openapi3-ts": "^4.4.0",
"pino": "^9.6.0",
"uuid": "^11.0.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@chubbyts/chubbyts-eslint": "^3.0.3",
"@chubbyts/chubbyts-function-mock": "^1.5.2",
"@stryker-mutator/core": "^8.7.1",
"@stryker-mutator/typescript-checker": "^8.7.1",
"@stryker-mutator/vitest-runner": "^8.7.1",
"@types/node": "^22.10.5",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^2.1.8",
"cross-fetch": "^4.1.0",
"mongodb-memory-server": "^10.1.3",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]+sha512.93e57b0126f0df74ce6bff29680394c0ba54ec47246b9cf321f0121d8d9bb03f750a705f24edc3c1180853afd7c2c3b94196d0a3d53d3e069d9e2793ef11f321"
}