-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.6 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.6 KB
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
{
"name": "express-typescript-template",
"version": "1.0.0",
"description": "An Express and TypeScript starter template for building scalable Node.js applications.",
"author": "Gabriel Mochi <gmochi56@icloud.com>",
"main": "dist/server.js",
"private": true,
"license": "UNLICENSED",
"engines": {
"node": "^20"
},
"scripts": {
"build": "tsc",
"prebuild": "rimraf dist",
"start": "NODE_ENV=production node .",
"prestart": "npm run build",
"dev": "NODE_ENV=development tsc-watch --onSuccess \"nodemon .\"",
"test": "NODE_ENV=test nyc mocha",
"coverage:view": "serve ./coverage",
"lint": "eslint . --ext .ts",
"format": "prettier 'src/**/*.(ts|js|json|md)' --write"
},
"homepage": "https://gitlab.com/gabrielmochi/express-typescript-template#readme",
"repository": {
"type": "git",
"url": "git+https://gitlab.com/gabrielmochi/express-typescript-template.git"
},
"bugs": {
"url": "https://gitlab.com/gabrielmochi/express-typescript-template/issues"
},
"_moduleAliases": {
"@infra": "dist/infra",
"#types": "dist/types",
"@middlewares": "dist/middlewares",
"@libs": "dist/libs",
"@utils": "dist/utils",
"@exceptions": "dist/exceptions",
"@interfaces": "dist/interfaces"
},
"dependencies": {
"@hapi/boom": "^10.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"cors": "^2.8.5",
"express": "^4.21.0",
"helmet": "^8.0.0",
"module-alias": "^2.2.3",
"pino": "^9.4.0",
"pino-http": "^10.3.0",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^5.0.1",
"@types/convict": "^6.1.6",
"@types/convict-format-with-validator": "^6.0.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.7.4",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"chai": "^5.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.10.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.8.2",
"nodemon": "^3.1.7",
"nyc": "^17.1.0",
"pino-pretty": "^11.2.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"serve": "^14.2.4",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"tsc-watch": "^6.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.8.0"
}
}