-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "ns-trading-server",
"version": "0.0.6",
"description": "node-stock trading-server app",
"repository": {
"type": "git",
"url": "https://github.com/node-stock/ns-trading-server"
},
"license": "GPL3",
"main": "dist/index.js",
"wdserv": "selenium-standalone start",
"typings": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"start:watch": "nodemon",
"debug": "node --inspect dist/index.js",
"rm": "rimraf dist",
"tsc": "npm run rm && tsc -p tsconfig.development.json",
"tslint": "tslint --project ./tslint.json",
"test": "cross-env NODE_ENV=test mocha dist/**/*.test.js --timeout 5000 --require intelli-espower-loader",
"prepare": "npm run rm && tsc -p tsconfig.json"
},
"dependencies": {
"bignumber.js": "^5.0.0",
"bitbank-handler": "0.0.1-beta.2",
"ns-common": "0.0.19",
"ns-manager": "0.0.71",
"ns-store": "0.0.51",
"ns-trader": "0.0.14",
"ns-types": "0.0.62",
"toml": "^2.3.3"
},
"devDependencies": {
"@nestjs/common": "^4.5.1",
"@nestjs/core": "^4.5.1",
"@nestjs/microservices": "^4.5.1",
"@nestjs/testing": "^4.5.1",
"@nestjs/websockets": "^4.5.1",
"@types/bignumber.js": "^5.0.0",
"@types/config": "0.0.33",
"@types/mocha": "^2.2.41",
"@types/node": "^8.5.1",
"@types/power-assert": "^1.4.29",
"config": "^1.26.1",
"cross-env": "^5.1.0",
"debug": "^3.1.0",
"intelli-espower-loader": "^1.0.1",
"mocha": "^4.0.1",
"mysql2": "^1.4.2",
"nodemon": "^1.13.3",
"power-assert": "^1.4.4",
"reflect-metadata": "^0.1.10",
"rimraf": "^2.6.2",
"rxjs": "^5.5.2",
"ts-node": "^4.0.2",
"tslint": "^5.6.0",
"typescript": "^2.6.1"
}
}