-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "aragashion-pushnotifications",
"version": "1.0.0",
"description": "Push notification service for the Aragashion quest tracker",
"main": "src/index.ts",
"repository": "https://github.com/emanguy/aragashion-pushnotifications",
"author": "Evan Rittenhouse <[email protected]>",
"license": "Apache",
"private": true,
"scripts": {
"start": "tsc && node build/index.js $NODE_DEBUG_OPTION",
"build": "tsc",
"test": "mocha -r ts-node/register test/**/*.ts"
},
"dependencies": {
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.11.1",
"@types/morgan": "^1.7.35",
"@types/redis": "^2.8.6",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.3.9",
"body-parser": "^1.18.3",
"common-interfaces": "github:emanguy/QuestTracker-CommonInterfaces#1.2.1",
"cors": "^2.8.5",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-async-handler": "^1.1.4",
"http-status-codes": "^1.4.0",
"morgan": "^1.9.0",
"redis": "^2.8.0",
"sse-channel": "^3.0.1",
"ts-node": "^6.0.5",
"typescript": "^2.8.3",
"uuid": "^3.2.1",
"winston": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/dockerode": "^2.5.4",
"@types/mocha": "^5.2.0",
"chai": "^4.1.2",
"dockerode": "^2.5.5",
"mocha": "^5.2.0",
"sleep-promise": "^8.0.1"
}
}