-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "promo-item-distributor",
"version": "1.0.0",
"description": "Figures out who qualified for in-game promo items during a Tip of the Hats event",
"main": "src/index.js",
"scripts": {
"start": "ts-node src/index.ts",
"convert": "ts-node src/convert.ts",
"test": "npm run static",
"static": "tslint -c tslint.json 'src/**/*.ts'",
"mock-server": "ts-node src/mock-server"
},
"author": "Alex Van Camp",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"convict": "^1.5.0",
"csv-parser": "^1.11.0",
"express": "^4.14.0",
"listr": "^0.6.1",
"listr-update-renderer": "^0.1.2",
"listr-verbose-renderer": "^0.1.0",
"pg": "^6.1.0",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"winston": "^3.1.0",
"zen-observable": "^0.8.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/convict": "^4.2.0",
"@types/express": "^4.16.0",
"@types/listr": "^0.13.0",
"@types/node": "^10.12.0",
"@types/pg": "^7.4.11",
"@types/request-promise": "^4.1.42",
"@types/zen-observable": "^0.8.0",
"trash-cli": "^1.4.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-xo": "^0.9.0",
"typescript": "^3.1.3"
}
}