-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.65 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": "nodejs-express-typescript",
"version": "1.0.0",
"description": "minimal NodeJs Express starter with TypeScript",
"main": "./dist/server.js",
"scripts": {
"cm": "git-cz",
"release": "standard-version",
"build": "./node_modules/.bin/tsc",
"lint": "eslint '**/*.ts'",
"start": "NODE_ENV=production node dist/server.js",
"dev": "NODE_ENV=development tsc-watch --onSuccess \"node ./dist/server.js\"",
"test": "./node_modules/.bin/jest --verbose --detectOpenHandles --forceExit --maxWorkers 2",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"coverage": "./node_modules/.bin/jest --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ridakk/nodejs-express-typescript.git"
},
"keywords": [
"NodeJs",
"Express",
"TypeScript",
"BoilerPlate"
],
"author": "Kadir Goktas",
"license": "MIT",
"bugs": {
"url": "https://github.com/ridakk/nodejs-express-typescript/issues"
},
"homepage": "https://github.com/ridakk/nodejs-express-typescript#readme",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/compression": "^1.0.1",
"@types/config": "0.0.34",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/express-pino-logger": "^4.0.2",
"@types/helmet": "0.0.44",
"@types/jest": "^24.0.19",
"@types/node": "^12.11.2",
"@types/pino": "^5.8.12",
"@types/supertest": "^2.0.8",
"@types/swagger-jsdoc": "^3.0.2",
"@types/swagger-ui-express": "^3.0.1",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"coveralls": "^3.0.7",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.0.9",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"tsc-watch": "^4.0.0",
"typescript": "^3.6.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"compression": "^1.7.4",
"config": "^3.2.3",
"dotenv": "^8.2.0",
"envalid": "^5.0.0",
"express": "^4.17.1",
"express-pino-logger": "^4.0.0",
"helmet": "^3.21.2",
"js-yaml": "^3.13.1",
"nexit": "^1.0.2",
"pino": "^5.13.5",
"pino-pretty": "^3.2.2",
"reflect-metadata": "^0.1.13",
"swagger-jsdoc": "^3.4.0",
"swagger-ui-express": "^4.1.2"
}
}