-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.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
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
{
"name": "ts-express-postgresql",
"version": "1.0.0",
"description": "Just another Boilerplate for TS, Express & PostgreSQL",
"main": "src/server.ts",
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"dev": "nodemon src/server.ts",
"start": "node build/server.js",
"build": "rm -rf build/ && tsc",
"clean": "rm -rf build",
"lint": "eslint . --ext .ts,.js --quiet --fix"
},
"author": "Bivek Singh",
"license": "ISC",
"dependencies": {
"chalk": "^4.1.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^4.6.0",
"morgan": "^1.10.0",
"reflect-metadata": "^0.1.13",
"typedi": "^0.10.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.8",
"@types/helmet": "^4.0.0",
"@types/morgan": "^1.9.2",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"typescript": "^4.2.4"
},
"keywords": [
"TS",
"Express",
"PostgreSQL",
"Jest"
],
"repository": {
"type": "git",
"url": "git+https://github.com/beevk/ts-express-postgres.git"
},
"bugs": {
"url": "https://github.com/beevk/ts-express-postgres/issues"
},
"homepage": "https://github.com/beevk/ts-express-postgres#readme"
}