-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.18 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.18 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@nodeboot/native-http-sample",
"scripts": {
"start": "pnpm run clean:build && pnpm run build && node dist/server.js",
"start:prod": "NODE_ENV=production node dist/server.js",
"dev": "NODE_ENV=development nodemon",
"nodeboot:update": "pnpm update @nodeboot/*@latest",
"build": "tsc -p tsconfig.build.json",
"postbuild": "npx @nodeboot/aot node-boot-aot",
"clean:build": "rimraf ./dist",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "pnpm lint --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "jest --passWithNoTests",
"typecheck": "tsc",
"rebuild:sqlite": "npm rebuild better-sqlite3",
"create:migration": "typeorm migration:create ./src/persistence/migrations/migration"
},
"dependencies": {
"@nodeboot/aot": "^1.4.0",
"@nodeboot/authorization": "^1.3.1",
"@nodeboot/config": "^1.3.1",
"@nodeboot/context": "^1.13.0",
"@nodeboot/core": "^1.15.0",
"@nodeboot/di": "^1.4.1",
"@nodeboot/error": "^1.3.0",
"@nodeboot/http-server": "^1.3.0",
"@nodeboot/starter-actuator": "^1.7.1",
"@nodeboot/starter-http": "^3.5.1",
"@nodeboot/starter-openapi": "^2.4.2",
"@nodeboot/starter-persistence": "^1.11.0",
"@nodeboot/starter-scheduler": "^1.6.0",
"@nodeboot/starter-validation": "^1.2.1",
"better-sqlite3": "^12.4.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"katxupa": "^1.10.4",
"reflect-metadata": "^0.2.1",
"typedi": "^0.10.0",
"typeorm": "^0.3.27",
"winston": "^3.10.0"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@jest/globals": "^29.5.0",
"@swc/core": "^1.3.41",
"@swc/jest": "^0.2.24",
"@tsconfig/node-lts-strictest": "^18.12.1",
"@types/jest": "^29.5.11",
"@types/memwatch-next": "^0.3.6",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.31.0",
"eslint-config-katxupa": "^1.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.27.5",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.1.2",
"memwatch-next": "^0.3.0",
"nodemon": "^2.0.21",
"pinst": "^3.0.0",
"prettier": "^2.8.3",
"prettier-plugin-organize-imports": "^3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
},
"version": "1.3.4",
"description": "Node-Boot sample project using native HTTP server. This project demonstrates how to create a simple HTTP server using Node.js and TypeScript, showcasing the capabilities of the Node-Boot framework.",
"author": "Manuel Santos <ney.br.santos@gmail.com>",
"license": "MIT",
"private": "true",
"keywords": [
"nodeboot",
"typescript",
"http",
"native",
"server",
"sample"
],
"repository": {
"type": "git",
"url": "https://github.com/nodejs-boot/sample-native-http.git"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "src/index.ts",
"packageManager": "pnpm@10.4.1",
"engines": {
"node": "^22.14.0 || ^20.6.0"
}
}