-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.74 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
{
"name": "mds-cloud-notification-service",
"version": "1.0.0",
"description": "A simple http based download/upload micro service",
"scripts": {
"server": "./bin/server",
"test": "NODE_ENV=test mocha",
"test-watch": "NODE_ENV=test nodemon --exec mocha",
"test-cov": "NODE_ENV=test nyc mocha",
"test-watch-cov": "NODE_ENV=test nodemon --exec \"nyc mocha\"",
"lint": "eslint 'src/**'",
"pretty-check": "prettier -c ./src",
"pretty": "prettier -w ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MadDonkeySoftware/mdsCloudNotificationService.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/MadDonkeySoftware/mdsCloudNotificationService/issues"
},
"homepage": "https://github.com/MadDonkeySoftware/mdsCloudNotificationService#readme",
"dependencies": {
"@maddonkeysoftware/orid-node": "^0.1.0",
"axios": "^0.30.0",
"body-parser": "^1.19.2",
"bunyan": "^1.8.15",
"express": "^4.17.3",
"ioredis": "^4.28.5",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.17.21",
"memory-cache": "^0.2.0",
"node-fetch": "^3.2.0",
"node-redis-pubsub": "^5.0.0",
"parse-redis-url": "0.0.2",
"redis": "^4.0.3",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"url-join": "^4.0.1"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.9.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^11.0.0",
"nodemon": "^3.0.0",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"proxyquire": "^2.1.3",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0",
"supertest": "^6.2.2"
}
}