-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.25 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
44
{
"name": "node-ts-boilerplate",
"version": "2.0.0",
"author": "PoProstuWitold",
"description": "Basic template for robust development of TypeScript apps",
"main": "build/src/main.js",
"homepage": "https://github.com/PoProstuWitold/node-ts-template",
"engines": {
"node": ">=20.x",
"pnpm": ">=9.x"
},
"scripts": {
"start": "node build/src/main.js",
"start:watch": "NODE_ENV='development' node --watch --import tsx src/main.ts",
"clean": "rimraf coverage build tmp",
"lint": "pnpm biome lint --write ./src",
"format": "pnpm biome format --write ./src",
"check": "pnpm biome check --write ./src",
"prebuild": "pnpm run check",
"build": "tsc -p tsconfig.json",
"build:watch": "NODE_ENV='development' tsc -w -p tsconfig.json",
"build:release": "pnpm run clean && tsc -p tsconfig.release.json",
"test": "node --import tsx --test __tests__/*.test.ts",
"test:watch": "NODE_ENV='development' node --watch --import tsx --test __tests__/*.test.ts"
},
"keywords": [
"TypeScript",
"boilerplate",
"node",
"ts"
],
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"volta": {
"node": "22.12.0",
"pnpm": "9.15.1"
}
}