This repository has been archived by the owner on Aug 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.89 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
{
"name": "@eth-singapore/bot",
"version": "0.0.1",
"private": true,
"license": "UNLICENSED",
"scripts": {
"prepublish": "yarn lint && yarn build",
"lint": "yarn tslint --format stylish --project . --exclude 'node_modules/**/*.ts'",
"coverage": "yarn build && jest --coverage && cat ./coverage/lcov.info | coveralls",
"build": "rm -rf dist/ && tsc --project tsconfig.json",
"start": "DEBUG=* yarn build && node-dev dist/src/bin/main.js --config=config.json",
"start-dev": "DEBUG=* ts-node-dev src/bin/main.ts --config=config.json",
"test": "yarn test-ts && yarn test-rest",
"test-ts": "yarn jest",
"test-rest": "yarn ts-node-dev test/rest/index.ts",
"create-migration": "yarn typeorm migration:generate -n",
"migrate": "yarn typeorm migration:run"
},
"dependencies": {
"@machinomy/logger": "^0.2.3",
"@types/axios": "^0.14.0",
"@types/json-rpc-ws": "^4.0.2",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-router": "^7.0.33",
"@types/koa-session": "^5.7.4",
"@types/newman": "^3.10.0",
"@types/node": "^10.12.11",
"@types/twit": "^2.2.20",
"@types/yargs": "^12.0.1",
"axios": "^0.18.0",
"bignumber.js": "^8.0.1",
"decko": "^1.2.0",
"json-rpc-ws": "^7.0.0",
"koa": "^2.6.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"koa-session": "^5.10.0",
"newman": "^4.2.2",
"node-tweet-stream": "^2.0.3",
"ts-typed-events": "^1.1.1",
"twit": "^2.2.11",
"typeorm": "^0.2.9",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"jest": "^23.6.0",
"node-dev": "^3.1.3",
"nyc": "^13.1.0",
"tslint": "^5.11.0",
"tslint-config-standard-plus": "^2.1.1",
"ts-jest": "23.10.5",
"ts-node-dev": "^1.0.0-pre.30",
"typescript": "^3.3.0-dev.20181201"
}
}