41 lines
891 B
JSON
41 lines
891 B
JSON
{
|
|
"name": "hello-world",
|
|
"version": "0.1.0",
|
|
"private": false,
|
|
"description": "Node + TypeScript OOP test environment for Gitea build and pack",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"build": "npm run clean && tsc -p tsconfig.json",
|
|
"test": "vitest run",
|
|
"start": "node dist/server.js",
|
|
"dev": "tsx watch src/server.ts"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^4.19.2",
|
|
"helmet": "^7.1.0",
|
|
"morgan": "^1.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/morgan": "^1.9.7",
|
|
"@types/node": "^20.14.12",
|
|
"rimraf": "^5.0.7",
|
|
"tsx": "^4.19.1",
|
|
"typescript": "^5.5.4",
|
|
"vitest": "^1.6.0"
|
|
}
|
|
}
|
|
|