-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "nodejs-service",
"version": "1.0.0",
"description": "Minimal NodeJS service template. Just clone and code",
"main": "dist/main.js",
"scripts": {
"build": "npm run validate-typescript && npm run build:clean && npm run generate-dist",
"start": "node dist/main.js",
"dev": "tsnd -r tsconfig-paths/register --inspect=0.0.0.0:9229 --respawn src/main.ts",
"build:clean": "rimraf dist; exit 0",
"validate-typescript": "tsc -p tsconfig.prod.json --noEmit",
"generate-dist": "swc ./src -d dist --strip-leading-paths"
},
"keywords": [],
"author": "just.lyonya@gmail.com",
"license": "MIT License",
"dependencies": {
"dotenv": "^16.4.5",
"pino": "^8.19.0"
},
"devDependencies": {
"@swc/cli": "^0.3.10",
"@swc/core": "^1.4.8",
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unicorn": "^51.0.1",
"pino-pretty": "^10.3.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=18.x",
"npm": ">=9.x"
}
}