-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
37 lines (37 loc) · 1.07 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": "nodejs-typescript-template",
"version": "1.397.0",
"description": "A template for a nodejs application, using typescript",
"main": "dist/src/index.js",
"author": "",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch src/**/*.ts --exec ts-node ./src/app.ts",
"build": "tsc",
"start": "node ./dist/app.js",
"lint": "eslint --fix --quiet src/**/*.ts",
"format": "prettier --loglevel silent --write src/**/*.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint-parser": "^22.0.0"
}
}