-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.6 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "typescript-express-template",
"version": "1.0.0",
"description": "A Microservice Template in NodeJS, TypeScript, and Express",
"main": "src/app.ts",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js -f src/db.ts",
"debug": "npm run clean && npm run build && node --inspect-brk dist/app.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --verbose",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js",
"test:ci:coverage": "jest --ci --coverage",
"clean": "rimraf dist/",
"build": "tsc --project ./tsconfig.json",
"start": "npm run clean && npm run build && node dist/app.js",
"start:dev": "ts-node-dev src/app.ts",
"start:ts": "ts-node src/app.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/vs4vijay/typescript-express-template.git"
},
"keywords": [
"microservice",
"apis",
"nodejs",
"javascript",
"typescript",
"typeorm",
"typedi",
"restful",
"api"
],
"author": "Vijay Soni ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/vs4vijay/typescript-express-template/issues"
},
"homepage": "https://github.com/vs4vijay/typescript-express-template#readme",
"dependencies": {
"body-parser": "^1.19.0",
"class-transformer": "^0.3.2",
"class-validator": "0.13.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.8.1",
"sqlite3": "^5.0.1",
"typedi": "^0.8.0",
"typeorm": "^0.2.28",
"typeorm-typedi-extensions": "^0.2.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "2.8.10",
"@types/express": "4.17.11",
"@types/jest": "26.0.22",
"@types/node": "14.14.43",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"eslint": "7.24.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"ts-node": "9.1.1",
"ts-node-dev": "1.1.6",
"typescript": "4.1.5",
"jest": "26.6.3",
"jest-junit": "12.0.0",
"rimraf": "3.0.2"
}
}