-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "quant_ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -r ./node_modules/ts-node/register spec/**/*.ts",
"start": "./node_modules/.bin/ts-node --project tsconfig.json src/main.ts",
"cli": "./node_modules/.bin/ts-node --project tsconfig.json src/cli.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@nestjs/typeorm": "^7.0.0",
"@types/inquirer": "^6.5.0",
"@types/mocha": "^7.0.2",
"@types/pako": "^1.0.1",
"@types/request-promise": "^4.1.45",
"@types/ws": "^7.2.2",
"bignumber.js": "^9.0.0",
"eslint": "^6.8.0",
"inquirer": "^7.1.0",
"log4js": "^6.1.2",
"log4js-extend": "^0.2.1",
"mssql": "^6.2.0",
"mysql": "^2.18.1",
"pako": "^1.0.11",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"rxjs": "^6.5.4",
"sparkson": "^1.3.3",
"sqlite3": "^4.1.1",
"typeorm": "^0.2.24",
"ws": "^7.2.3"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
}
}