-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.66 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
{
"name": "code-refresher-hub",
"version": "1.0.0",
"description": "Complete Node.js Guide",
"type": "module",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.16.0"
},
"scripts": {
"build": "npx lerna run build",
"test": "npx lerna run test",
"lint": "npx lerna run lint",
"commitlint": "commitlint --edit",
"prepare": "npm install husky"
},
"author": "Angel Petrov",
"license": "ISC",
"devDependencies": {
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"@eslint/js": "^9.9.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.6",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"commitlint": "^19.4.0",
"eslint": "^9.9.0",
"eslint-plugin-react": "^7.35.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lerna": "^8.1.8",
"prettier": "^3.3.3",
"semantic-release": "^24.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"dependencies": {
"@sentry/cli": "^2.33.1",
"@sentry/node": "^8.25.0",
"@sentry/profiling-node": "^8.25.0",
"@types/winston": "^2.4.4",
"body-parser": "^1.18.3",
"dotenv-safe": "^9.1.0",
"express": "^4.16.3",
"express-handlebars": "^8.0.1",
"helmet": "^7.1.0",
"winston": "^3.13.1",
"winston-logstash": "^1.2.1"
}
}