-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.86 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "base_express_app",
"version": "1.0.0",
"description": "Base Express Repository with high quality software development integrations such as TypeScript, Logging, Standard Responses, Test Suite, API and code docs and more!",
"main": "src/index.ts",
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "npx tsx",
"dev": "concurrently \"nodemon\" \"npm run doc\"",
"doc": "npx typedoc --out ./documentation",
"test": "mocha",
"test:coverage": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fabiozil/BaseExpressApp.git"
},
"keywords": [
"typescript"
],
"author": "Fabio Anaya",
"license": "ISC",
"bugs": {
"url": "https://github.com/Fabiozil/BaseExpressApp/issues"
},
"homepage": "https://github.com/Fabiozil/BaseExpressApp#readme",
"dependencies": {
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"pino": "^8.18.0",
"pino-pretty": "^10.3.1",
"swagger-ui-express": "^5.0.0",
"tsx": "^4.7.1",
"typedoc-theme-hierarchy": "^4.1.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.11",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.10",
"@types/sinon": "^17.0.3",
"@types/swagger-ui-express": "^4.1.6",
"chai": "^4.4.1",
"concurrently": "^8.2.2",
"dotenv": "^16.4.1",
"eslint": "^8.56.0",
"mocha": "^10.3.0",
"nodemon": "^3.0.3",
"nyc": "^15.1.0",
"sinon": "^17.0.1",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "tsx src/index.ts && npm run doc"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"extension": [
".ts"
],
"exclude": [
"acceptanceTest",
"/*.spec.ts",
"/*.js",
"src/interfaces",
"test"
],
"reporter": [
"lcov",
"text-summary",
"text",
"html"
],
"report-dir": "./coverage",
"excludeNodeModules": true,
"exit": true
},
"mocha": {
"package": "./package.json",
"extension": [
"ts"
],
"spec": [
"./test/**/*.spec.ts"
],
"recursive": true,
"file": [],
"require": [
"ts-node/register/transpile-only",
"source-map-support/register"
],
"exit": true
}
}