-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 4.03 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "push-notifications",
"version": "0.0.1",
"description": "A service for sending push notification messages",
"main": "./dist/app.js",
"engines": {
"node": "^18"
},
"scripts": {
"start": "npm run serve",
"serve": "service-runner",
"build": "npm run build-ts && npm run lint-check",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"debug": "npm run build && npm run watch-debug",
"clean": "rm -r dist",
"test": "PREQ_CONNECT_TIMEOUT=15 TS_NODE_FILES=true mocha -r ts-node/register 'test/**/*.ts'",
"test:unit": "PREQ_CONNECT_TIMEOUT=15 TS_NODE_FILES=true mocha -r ts-node/register 'test/unit/**/*.ts'",
"test:spec": "TS_NODE_FILES=true mocha -r ts-node/register test/features/app/spec.ts",
"test:coverage": "nyc check-coverage --all --lines 80",
"coverage": "nyc --reporter=lcov --reporter=text --reporter=text-summary npm test",
"watch-test": "npm run test -- --watchAll",
"lint": "tsc --noEmit && npm run lint-check",
"lint-check": "eslint \"**/*.{js,ts}\"",
"lint-fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"watch": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\"",
"watch-node": "nodemon dist/server.js --signal SIGTERM",
"serve-debug": "nodemon --inspect dist/server.js --signal SIGTERM",
"docker-start": "service-runner docker-start",
"docker-test": "service-runner docker-test",
"test-build": "service-runner docker-test && service-runner build --deploy-repo --force"
},
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/mediawiki-services-push-notifications.git"
},
"keywords": [
"REST",
"API",
"push",
"notification",
"FCM",
"APNs"
],
"author": "Wikimedia Product Infrastructure Team <[email protected]>",
"contributors": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/Push-Notification-Service/"
},
"homepage": "https://www.mediawiki.org/wiki/Wikimedia_Product_Infrastructure_team/Push_Notifications_Infrastructure",
"dependencies": {
"@wikimedia/apn": "^3.0.2",
"bluebird": "^3.7.2",
"body-parser": "^1.20.2",
"buffered-queue": "^1.0.1",
"bunyan": "^1.8.15",
"compression": "^1.7.4",
"domino": "^2.1.6",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"firebase-admin": "^12.7.0",
"http-shutdown": "^1.2.2",
"js-yaml": "^4.1.0",
"preq": "^0.5.14",
"promise.allsettled": "^1.0.7",
"proxy-agent": "^6.4.0",
"request": "git://github.com/mdholloway/request.git",
"service-runner": "^5.0.0",
"supertest": "^7.0.0",
"swagger-router": "^0.7.4",
"swagger-ui-dist": "^5.17.14",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/body-parser": "^1.19.5",
"@types/compression": "^1.7.5",
"@types/concurrently": "^6.4.0",
"@types/eslint": "^8.56.10",
"@types/express": "^4.17.21",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"ajv": "^8.16.0",
"concurrently": "^8.2.2",
"eslint-config-wikimedia": "^0.28.1",
"eslint-plugin-jsdoc": "^48.2.9",
"eslint-plugin-json": "^4.0.0",
"extend": "^3.0.2",
"mocha": "^10.4.0",
"mocha-lcov-reporter": "^1.3.0",
"mocha.parallel": "^0.15.6",
"nock": "^13.5.4",
"nodemon": "^3.1.3",
"nyc": "^17.0.0",
"openapi-schema-validator": "^12.1.3",
"rewire": "^7.0.0",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"deploy": {
"target": "debian",
"node": "10.20.1",
"dependencies": {
"_all": []
}
},
"overrides": {
"minimatch": "5.1.2",
"glob": "8.1.0"
}
}