-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 3 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
{
"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 *.cjs *.ts",
"cs": "prettier --check bin bootstrap config src tests *.cjs *.ts",
"develop:debug": "CHUBBYTS_NODE_OPTIONS='--inspect=0.0.0.0:8888' nodemon",
"develop": "nodemon",
"infection": "stryker run",
"lint-fix": "eslint bin bootstrap config src tests --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.1.1",
"@chubbyts/chubbyts-api": "^4.1.1",
"@chubbyts/chubbyts-decode-encode": "^1.3.3",
"@chubbyts/chubbyts-dic": "^1.2.0",
"@chubbyts/chubbyts-dic-config": "^1.2.0",
"@chubbyts/chubbyts-dic-types": "^1.2.1",
"@chubbyts/chubbyts-framework": "^1.9.4",
"@chubbyts/chubbyts-framework-router-path-to-regexp": "^1.4.1",
"@chubbyts/chubbyts-http": "^1.2.1",
"@chubbyts/chubbyts-http-cors": "^1.2.1",
"@chubbyts/chubbyts-http-error": "^2.3.1",
"@chubbyts/chubbyts-http-node-bridge": "^1.2.0",
"@chubbyts/chubbyts-http-types": "^1.2.3",
"@chubbyts/chubbyts-log-types": "^1.3.2",
"@chubbyts/chubbyts-mongodb": "^1.4.0",
"@chubbyts/chubbyts-negotiation": "^3.2.2",
"@chubbyts/chubbyts-pino-adapter": "^1.3.2",
"commander": "^12.1.0",
"mongodb": "^6.8.0",
"openapi3-ts": "^4.3.3",
"pino": "^9.2.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@chubbyts/chubbyts-eslint": "^2.0.7",
"@chubbyts/chubbyts-function-mock": "^1.4.3",
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/typescript-checker": "^8.2.6",
"@stryker-mutator/vitest-runner": "^8.2.6",
"@swc/cli": "^0.4.0",
"@swc/core": "^1.6.7",
"@types/node": "^20.14.9",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^1.6.0",
"cross-fetch": "^4.0.0",
"mongodb-memory-server": "^9.4.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}