-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.28 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.28 KB
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
45
46
47
48
49
50
51
{
"name": "ts-node-template",
"version": "1.0.0",
"description": "NodeJS server template with TypeScript",
"main": "./src/app.ts",
"type": "module",
"keywords": [
"Template",
"Node JS template",
"TypeScript template"
],
"author": "Klimenty Karavaev",
"license": "ISC",
"engines": {
"node": "v23.6.1",
"npm": "11.1.0"
},
"scripts": {
"test": "jest",
"build": "tsc",
"fix": "eslint --fix",
"dev": "nodemon ./src/app.ts",
"start": "node ./dist/src/app.js",
"format": "prettier --check -w --cache .",
"setup:prod": "./scripts/prepare.bash production",
"setup:dev": "./scripts/prepare.bash development",
"lint": "eslint src/**/*.ts --max-warnings 0 --cache",
"postinstall": "husky install"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.4.3",
"@types/jest": "^29.5.0",
"@types/mocha": "^10.0.1",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"babel-jest": "^29.4.3",
"eslint": "^8.2.0",
"eslint-plugin-import": "^2.25.2",
"husky": "^8.0.3",
"jest": "^29.4.3",
"nodemon": "^3.1.9",
"prettier": "^3.0.0",
"ts-jest": "^29.0.5",
"tsx": "^4.19.3",
"typescript": "latest"
}
}