-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "template-nodejs-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf ./build",
"build": "npm-run-all lint format test clean && tsc",
"start": "node src",
"dev": "nodemon src -e ts,json --exec ts-node src",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"format": "npx prettier --write src",
"format:check": "npx prettier --check src"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.4.0",
"jest": "^29.7.0",
"nodemon": "^3.1.3",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.1",
"rimraf": "^5.0.7",
"supertest": "^7.0.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
}
}