-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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": "node-ts-setup",
"version": "1.0.0",
"description": "Project Setup - NodeJs with Typescript",
"main": "index.js",
"author": "LuccaRebelloToledo",
"license": "UNLICENSED",
"scripts": {
"build": "tsc && tsc-alias",
"start": "node src/index.js",
"start:dev": "nodemon --exec ts-node -r tsconfig-paths/register ./src/index.ts",
"lint": "eslint ./src --max-warnings 0 --fix",
"format": "prettier --write ./src",
"test": "jest --passWithNoTests",
"test:watch": "jest --passWithNoTests --watch",
"test:push": "jest --passWithNoTests --collectCoverage",
"husky:prepare": "husky"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.7.1",
"git-commit-msg-linter": "^5.0.7",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.0.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.3"
}
}