-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.81 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
{
"name": "boilerplate-express-server",
"version": "1.1.4",
"description": "A boilerplate for express api applications",
"keywords": [
"boilerplate",
"express",
"node",
"api"
],
"homepage": "https://github.com/msobiecki/boilerplate-express-server/",
"bugs": {
"url": "https://github.com/msobiecki/boilerplate-express-server/issues"
},
"repository": {
"url": "git://git@github.com:msobiecki/boilerplate-express-server.git"
},
"license": "MIT",
"author": "Michał Sobiecki <kontakt@codeshaker.pl>",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "tsx dist/index.js",
"start:cluster": "tsx dist/cluster.js",
"dev": "tsx watch src/index.ts",
"dev:cluster": "tsx watch src/cluster.ts",
"prepare": "husky"
},
"dependencies": {
"@godaddy/terminus": "^4.12.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-prom-bundle": "^8.0.0",
"express-rate-limit": "^7.4.1",
"helmet": "^8.0.0",
"http-status": "^1.7.4",
"pino": "^9.5.0",
"pino-http": "^10.3.0",
"pino-pretty": "^11.3.0",
"prom-client": "^15.1.3",
"request-ip": "^3.3.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@msobiecki/eslint-config": "^8.9.2",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.8.7",
"@types/request-ip": "^0.0.41",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.7",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
}
}