-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
88 lines (88 loc) · 3.01 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
{
"name": "stoa",
"version": "0.2.0",
"description": "API server for Agora",
"main": "src/main.js",
"scripts": {
"test": "cross-env NODE_ENV=test mocha --exit -r ts-node/register tests/**/*.test.ts --timeout 10000",
"debug": "cross-env NODE_ENV=development mocha -r ts-node/register tests/**/*.test.ts",
"start": "cross-env NODE_ENV=production ts-node src/main.ts",
"convert": "ts-node .npm/convert-stoa-sample-data/convert-blocks.ts .npm/convert-stoa-sample-data/old/sample.json .npm/convert-stoa-sample-data/old/sample_utxo.json",
"tsc": "tsc",
"lint": "tslint --config tslint.json \"{src,tests}/**/*.ts\"",
"lint-fix": "tslint --fix --config tslint.json \"{src,tests}/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bosagora/stoa.git"
},
"author": "BOSAGORA Foundation",
"license": "MIT",
"bugs": {
"url": "https://github.com/bosagora/stoa/issues"
},
"homepage": "https://github.com/bosagora/stoa#readme",
"dependencies": {
"@ctrl/ts-base32": "^1.2.4",
"@sendgrid/mail": "^7.6.0",
"@types/app-root-path": "^1.2.4",
"@types/cors": "^2.8.8",
"@types/mongodb": "^3.6.17",
"@types/socket.io": "^3.0.2",
"argparse": "^2.0.1",
"assert": "^2.0.0",
"axios": "^0.21.2",
"boa-sdk-ts": "0.2.25",
"boa-sodium-ts": "^0.1.1",
"body-parser": "^1.19.0",
"coingecko-api-v3": "0.0.11",
"cors": "^2.8.5",
"crc": "^3.8.0",
"event-dispatch": "^0.4.1",
"express": "^4.17.1",
"extend": "^3.0.2",
"ip": "^1.1.5",
"js-big-decimal": "^1.3.4",
"js-yaml": "^3.14.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"moment": "^2.29.1",
"mongoose": "^5.13.2",
"mysql2": "^2.2.5",
"node-cron": "^3.0.0",
"response-time": "^2.3.2",
"sinon": "^11.1.1",
"smart-buffer": "^4.1.0",
"socket.io": "^4.1.2",
"socket.io-client": "^4.1.2",
"source-map-support": "^0.5.19",
"urijs": "^1.19.9",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.7"
},
"devDependencies": {
"@types/argparse": "^2.0.2",
"@types/chai": "^4.2.14",
"@types/coingecko-api": "^1.0.0",
"@types/crc": "^3.4.0",
"@types/express": "^4.17.8",
"@types/extend": "^3.0.1",
"@types/ip": "^1.1.0",
"@types/js-yaml": "^3.12.5",
"@types/lodash": "^4.14.175",
"@types/mkdirp": "^1.0.1",
"@types/mocha": "^7.0.2",
"@types/node-cron": "^2.0.3",
"@types/response-time": "^2.3.5",
"@types/sinon": "^10.0.2",
"@types/urijs": "^1.19.12",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"mocha": "^8.2.0",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.7"
}
}