-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "notification-service",
"version": "0.0.0",
"description": "A service responsible for notifications",
"main": "lib/index.js",
"scripts": {
"build": "babel --extensions \".ts\" src -d lib --copy-files",
"check-types": "tsc",
"eslint": "eslint --max-warnings 0 ./src --ext .ts",
"lint": "npm run eslint && npm run check-types",
"start": "babel-node --extensions .ts 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": ">=16.0"
},
"dependencies": {
"@tsconfig/node16": "^16.1.1",
"body-parser": "^1.20.1",
"dotenv": "^8.2.0",
"express": "^4.21.1",
"express-winston": "^4.1.0",
"firebase-admin": "^12.0.0",
"joi": "^17.2.1",
"pg": "^8.5.1",
"postgres-migrations": "^5.1.1",
"require-env-variable": "^3.1.2",
"tinypg": "^7.0.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/node": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/express": "^4.17.8",
"@types/jest": "^26.0.23",
"@types/node": "^14.18.3",
"@types/pg": "^7.14.10",
"@types/supertest": "^2.0.10",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"eslint": "^8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^27.0.3",
"supertest": "^5.0.0",
"ts-jest": "^27.0.2",
"typescript": "^4.8.4"
}
}