-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "monero-merchant",
"version": "0.0.1",
"description": "restful api wrapper for official monero(xmr) wallet rpc",
"main": "app.js",
"scripts": {
"build": "tsc",
"dev": "./node_modules/.bin/nodemon -e ts,tsx --exec ts-node app.ts",
"start": "node dist/app.js",
"test": "jest --runInBand --forceExit --detectOpenHandles --collectCoverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RuiSiang/monero-merchant.git"
},
"author": "",
"license": "Apache",
"bugs": {
"url": "https://github.com/RuiSiang/monero-merchant/issues"
},
"homepage": "https://github.com/RuiSiang/monero-merchant#readme",
"dependencies": {
"@open-rpc/client-js": "^1.6.3",
"cron": "^3.0.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-cors": "0.0.16",
"koa-router": "^13.0.0",
"koa-swagger-decorator": "^1.8.0",
"randomstring": "^1.2.1",
"round-to": "^5.0.0",
"sqlite3": "^5.0.0",
"typeorm": "^0.3.0",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/cron": "2.4.3",
"@types/koa": "2.15.0",
"@types/koa-bodyparser": "4.3.12",
"@types/koa-cors": "0.0.6",
"@types/koa-router": "7.4.8",
"@types/randomstring": "1.3.0",
"babel-plugin-transform-decorators-legacy": "1.3.5",
"jest": "27.5.1",
"jest-html-reporter": "3.10.2",
"nodemon": "3.1.7",
"ts-jest": "27.1.3",
"ts-node": "10.9.2",
"typescript": "4.9.5"
}
}