-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "binance-typescript-api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"prettify": "prettier --write src/**/*.{ts,tsx,js,jsx,css,scss,json}",
"dev": "ts-node-dev src/app.ts",
"check-types": "tsc -p . --noEmit",
"check-types:watch": "tsc -p . --noEmit -w"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.9.5",
"@types/query-string": "^6.3.0",
"fp-ts": "^2.11.3",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"prettier": "^2.4.1",
"rxjs": "^7.3.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.3"
},
"dependencies": {
"axios": "^0.21.4",
"@devexperts/swagger-codegen-ts": "^2.0.0-alpha.27",
"fp-ts-rxjs": "^0.6.15",
"query-string": "^7.0.1",
"reconnecting-websocket": "^4.4.0",
"replace-in-file": "^6.2.0"
},
"peerDependencies": {
"typescript": "^4.4.3",
"fp-ts": "^2.11.3",
"io-ts": "^2.2.16",
"io-ts-types": "^0.5.16",
"rxjs": "^7.3.0"
}
}