-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.53 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.53 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
{
"name": "cloud-native-enterprise-nodejs-revamped",
"version": "1.0.0",
"description": "Cloud-native Enterprise Node.js — Revamped",
"repository": {
"type": "git",
"url": "git+https://github.com/m99coder/cloud-native-enterprise-nodejs-revamped.git"
},
"keywords": [],
"author": "Marco Lehmann (https://m99.io/)",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/m99coder/cloud-native-enterprise-nodejs-revamped/issues"
},
"homepage": "https://github.com/m99coder/cloud-native-enterprise-nodejs-revamped#readme",
"dependencies": {
"@dotenvx/dotenvx": "^1.51.0",
"fastify": "^5.6.1",
"fastify-type-provider-zod": "^6.0.0",
"zod": "^4.1.12"
},
"devDependencies": {
"@types/node": "^24.7.2",
"c8": "^10.1.3",
"concurrently": "^9.2.1",
"tsdown": "^0.15.7",
"typescript": "^5.9.3"
},
"scripts": {
"build": "tsdown --sourcemap --minify",
"build:watch": "tsdown --sourcemap --minify --watch ./src",
"start:watch": "node --watch-path=./dist ./dist/server.js",
"start": "node ./dist/server.js",
"clean": "rm -rf ./coverage ./dist lcov.info",
"dev": "npm run build && concurrently -r \"npm run build:watch\" \"npm run start:watch\"",
"start:watch:debug": "node --inspect --watch-path=./dist ./dist/server.js",
"start:debug": "node --inspect ./dist/server.js",
"test": "NODE_V8_COVERAGE=./coverage c8 -r html npx tsx --test --experimental-test-coverage src/**/*.test.ts",
"test:watch": "npx tsx --watch --test src/**/*.test.ts"
}
}