-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.41 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
{
"name": "kj-nodejs-server",
"version": "0.0.1",
"description": "NodeJs Framework with ExpressJS and Typescript",
"main": "main.ts",
"scripts": {
"start": "nodemon",
"debug": "nodemon --exec \"node --inspect=0.0.0.0:9229 --require ts-node/register ./main.ts\" --verbose true --delay 5000ms",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.ts .",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"check:modules": "npx npm-check-updates --enginesNode"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@stylistic/eslint-plugin": "^1.4.1",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"chalk": "^4.1.2",
"eslint": ">=8.0.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^1.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.2.2"
},
"dependencies": {
"body-parser": "^1.20.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"ts-node": "^10.9.1"
},
"engines": {
"node": "^16 || ^18 || ^20"
}
}