-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "node-ts-boilerplate",
"version": "1.0.0",
"description": "",
"keywords": [],
"author": "",
"license": "ISC",
"main": "index.ts",
"scripts": {
"dev": "nodemon ./src/index.ts",
"start:dev": "ts-node ./src/index.ts",
"start": "node ./dist/index.js",
"lint": "eslint . --ext .ts",
"prettier": "prettier --config .prettierrc --write .",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:watch": "vitest watch",
"clean": "rimraf ./coverage ./dist",
"build": "tsc -p tsconfig.build.json",
"build:release": "npm run clean && npm run build"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vitest": "^0.3.26",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
}
}