This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.52 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
{
"name": "lu-server",
"version": "9.1.0",
"engines": {
"node": ">=18 <=20",
"yarn": "please use npm"
},
"description": "Base server for lu services",
"main": "index.js",
"repository": "github:BonnierNews/lu-server",
"homepage": "https://github.com/BonnierNews/lu-server",
"bugs": "https://github.com/BonnierNews/lu-server/issues",
"author": "LU Infra Team",
"license": "MIT",
"type": "module",
"scripts": {
"mocha": "mocha",
"lint": "eslint .",
"test": "mocha && eslint --ext js --ext json . --cache && depcheck --ignores=\"prettier\"",
"format": "prettier **/*.js --write && eslint . --fix",
"prettier": "prettier \"**/*.{js,json,md}\"",
"prettier:apply": "npm run prettier -- --write",
"coverage": "c8 npm test",
"check-coverage": "c8 check-coverage"
},
"dependencies": {
"@bonniernews/gcp-push-metrics": "^4.0.0",
"@moebius/http-graceful-shutdown": "^1.1.0",
"body-parser": "^1.20.1",
"camelcase": "^6.0.0",
"exp-config": "^4.2.0",
"express": "^4.19.2",
"joi": "^17.7.0",
"lu-logger": "github:BonnierNews/lu-logger#semver:^8.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"c8": "^8.0.1",
"chai": "^4.3.7",
"depcheck": "^1.4.2",
"eslint": "^8.45.0",
"eslint-config-exp": "^0.6.2",
"eslint-plugin-json": "^3.1.0",
"mocha": "^10.2.0",
"mocha-cakes-2": "^3.3.0",
"prettier": "^3.0.0",
"supertest": "^7.0.0"
},
"overrides": {
"google-gax@<3.6.1": "^3.6.1",
"optionator@<0.9.3": "^0.9.3"
}
}