-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.81 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.81 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
{
"name": "notification-service",
"version": "0.0.0",
"description": "A service responsible for notifications",
"main": "lib/index.js",
"scripts": {
"build": "tsc && tscp",
"eslint": "eslint --max-warnings 0 ./src --ext .ts",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:tsc",
"lint:eslint": "eslint ./src --ext .ts,.tsx",
"lint:prettier": "prettier . --check",
"lint:tsc": "tsc --noEmit",
"format": "npm run format:prettier && npm run format:eslint",
"format:prettier": "prettier --write .",
"format:eslint": "eslint ./src --fix || true",
"start": "ts-node src/index.ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PermanentOrg/notification-service.git"
},
"author": "Permanent.org",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/PermanentOrg/notification-service/issues"
},
"homepage": "https://permanent.org",
"engines": {
"node": ">=24.0"
},
"dependencies": {
"@pdc/http-status-codes": "^1.0.1",
"express": "^5.2.1",
"express-winston": "^4.2.0",
"firebase-admin": "^13.6.1",
"joi": "^18.0.2",
"pg": "^8.18.0",
"postgres-migrations": "^5.3.0",
"require-env-variable": "^4.0.2",
"tinypg": "^7.0.1",
"winston": "^3.18.3"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.4",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.13",
"@types/pg": "^8.16.0",
"@types/supertest": "^6.0.3",
"eslint": "^9.39.3",
"eslint-config-love": "^151.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-cp": "^0.1.9",
"typescript-eslint": "^8.56.1"
}
}