-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.66 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": "stopploss-trading-bot",
"version": "0.1.0",
"description": "Stoploss Trading Bot works only for Kraken Exchange",
"repository": {
"type": "git",
"url": "https://github.com/eusorov/stoploss-trading-bot"
},
"author": "Evgeny Usorov",
"license": "MIT",
"scripts": {
"start": "node dist/src/server.js",
"build": "npm run tsc && npm run tslint",
"watch-node": "nodemon dist/src/server.js",
"test": "tsc && jasmine",
"watch-ts": "tsc -w",
"jasmine": "jasmine",
"tsc": "tsc",
"tslint": "tslint -c tslint.json -p tsconfig.json"
},
"dependencies": {
"bcrypt-nodejs": "^0.0.3",
"dotenv": "^4.0.0",
"mongoose": "^5.0.4",
"node-fetch": "^2.0.0",
"q": "^1.5.1",
"qs": "^6.5.1",
"request": "^2.83.0"
},
"devDependencies": {
"@types/node-fetch": "^1.6.7",
"@types/async": "^2.0.45",
"@types/bcrypt-nodejs": "0.0.30",
"@types/bluebird": "^3.5.18",
"@types/body-parser": "^1.16.8",
"@types/compression": "0.0.33",
"@types/connect-mongo": "0.0.34",
"@types/dotenv": "^4.0.2",
"@types/errorhandler": "0.0.32",
"@types/express": "^4.11.1",
"@types/express-session": "^1.15.6",
"@types/jasmine": "^2.8.6",
"@types/jquery": "^3.2.17",
"@types/lodash": "^4.14.91",
"@types/lusca": "^1.5.0",
"@types/mongodb": "^2.2.17",
"@types/mongoose": "^4.7.29",
"@types/morgan": "^1.7.32",
"@types/node": "^7.0.50",
"@types/nodemailer": "^1.3.32",
"@types/qs": "^6.5.1",
"@types/request": "^2.0.9",
"@types/shelljs": "^0.7.7",
"jasmine": "^3.0.0",
"nodemon": "^1.13.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}