Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/christiancesar/christiancesar-boilerplate-node-typescript
This project is starter template for TypeScript.
https://github.com/christiancesar/christiancesar-boilerplate-node-typescript
Last synced: 6 days ago
JSON representation
This project is starter template for TypeScript.
- Host: GitHub
- URL: https://github.com/christiancesar/christiancesar-boilerplate-node-typescript
- Owner: christiancesar
- Created: 2024-08-26T19:22:24.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-08-26T19:30:01.000Z (3 months ago)
- Last Synced: 2024-08-26T22:46:49.921Z (3 months ago)
- Language: TypeScript
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Boilerplate Node Typescript
This project is starter template for TypeScript. For personal projects and teaching, providing a minimum structure.```json
//package.json
{
//...
"scripts": {
"dev:server": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:cov": "vitest run --coverage"
},
"dependencies": {
"@types/express": "^4.17.21",
"cors": "^2.8.5",
"crypto": "^1.0.1"
},
"devDependencies": {
"@swc/core": "^1.7.18",
"@swc/helpers": "^0.5.12",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.21",
"express": "^4.19.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
}
}
```