-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
85 lines (85 loc) · 2.38 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
{
"name": "binance-local-exchange",
"version": "1.0.9",
"description": "Binance local exchange",
"bin": {
"binance-local-exchange": "build/src/index.js"
},
"main": "build/src/index.js",
"types": "src/index.d.ts",
"scripts": {
"start": "ts-node src/index.ts",
"start:prod": "npm run build && node ./build/src/index.js",
"watch": "nodemon",
"build": "rimraf ./build && npx tsc",
"test": "jest --no-cache --coverage",
"copy-files": "copyfiles -u 1 src/data/* build/src",
"publish:dry-run": "npm publish --dry-run --access public",
"publish:patch": "npm version patch && npm publish --access public",
"publish:minor": "npm version minor && npm publish --access public",
"publish:major": "npm version major && npm publish --access public",
"prepack": "npm run build && npm run copy-files"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SockTrader/Binance-local-exchange.git"
},
"keywords": [
"binance",
"local",
"proxy",
"server",
"papertrading",
"paper-trading",
"candlesticks",
"algorithmic-trading",
"crypto",
"tradingbot",
"trading",
"bitcoin",
"cryptocurrency",
"exchange"
],
"author": "Wouter Cleymans",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/SockTrader/Binance-local-exchange/issues"
},
"homepage": "https://github.com/SockTrader/Binance-local-exchange#readme",
"dependencies": {
"@datorama/akita": "^6.2.4",
"@swc/core": "^1.2.119",
"@swc/jest": "^0.2.12",
"binance-api-node": "^0.11.28",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"express": "^4.17.1",
"inversify": "^6.0.1",
"lodash.without": "^4.4.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"uuid": "^8.3.2",
"ws": "^8.3.0"
},
"devDependencies": {
"@jest/types": "^27.4.2",
"@swc/helpers": "^0.3.2",
"@types/config": "^0.0.40",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.3",
"@types/lodash.without": "^4.4.6",
"@types/node": "^17.0.1",
"@types/uuid": "^8.3.3",
"@types/ws": "^8.2.2",
"concurrently": "^6.4.0",
"copyfiles": "^2.4.1",
"jest": "^27.4.4",
"jest-extended": "^1.2.0",
"nodemon": "^2.0.15",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
}
}