-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "express-ts-template",
"version": "0.0.0",
"description": "Express typescript template",
"main": "build/src/main.js",
"types": "build/src/main.map.js",
"engines": {
"node": ">= 16"
},
"devDependencies": {
"@types/config": "^3.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "~29.5",
"@types/node": "^16.18.41",
"@typescript-eslint/eslint-plugin": "~5.59",
"@typescript-eslint/parser": "~5.59",
"eslint": "~8.38",
"eslint-config-prettier": "~8.8",
"eslint-plugin-jest": "~27.2",
"jest": "~29.5",
"prettier": "~2.8",
"rimraf": "~5.0",
"ts-api-utils": "~0.0.44",
"ts-jest": "~29.1",
"ts-node": "^10.9.1",
"typescript": "~5.0"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"swagger": "tsoa spec ",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"lint-fix": "eslint --fix . --ext .ts --ext .mts",
"test": "jest --coverage --passWithNoTests",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch"
},
"author": "NguyenNguyen",
"license": "Apache-2.0",
"dependencies": {
"@types/swagger-ui-express": "^4.1.3",
"axios": "^1.4.0",
"body-parser": "^1.19.0",
"config": "^3.3.9",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"helmet": "^7.0.0",
"lodash.map": "^4.6.0",
"swagger-ui-express": "^5.0.0",
"tslib": "~2.5",
"tsoa": "^5.1.1",
"winston": "^3.3.3"
}
}