-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.65 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
{
"name": "futbot",
"version": "1.11.0",
"description": "Small size tradebot for automating simple tasks",
"private": true,
"scripts": {
"dev": "lerna run --parallel dev",
"lint": "tslint 'packages/**/lib/**/*.ts'",
"clear": "lerna run clear",
"prebuild": "yarn clear",
"build": "npm-run-all build:libs build:apps",
"build:libs": "lerna run --parallel --scope=@futbot/** build",
"build:apps": "lerna run --parallel --scope=futbot** build",
"semantic-release": "semantic-release"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"dependencies": {
"axios": "0.18.1",
"body-parser": "1.18.3",
"cheerio": "1.0.0-rc.2",
"cors": "2.8.4",
"cors-anywhere": "0.4.1",
"dotenv": "6.2.0",
"express": "4.16.3",
"lodash": "4.17.11",
"node-cache": "4.2.1",
"object-hash": "1.3.0",
"rimraf": "3.0.0",
"rxjs": "6.3.3",
"winston": "3.1.0"
},
"devDependencies": {
"@semantic-release/gitlab": "4.0.1",
"@types/express": "4.16.0",
"@types/lodash": "4.14.144",
"@types/node": "10.10.1",
"@types/node-cache": "4.1.3",
"husky": ">=1",
"lerna": "3.18.3",
"lint-staged": ">=8",
"npm-run-all": "4.1.5",
"pkg": "4.4.0",
"prettier": "1.18.2",
"semantic-release": "15.13.27",
"ts-loader": "6.2.0",
"ts-node": "7.0.1",
"tslint": "5.20.0",
"tslint-config-prettier": "1.18.0",
"tsoa": "2.2.5",
"typescript": "3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn lint"
}
},
"lint-staged": {
"*.{ts,js,vue,css,json,md}": [
"prettier --write",
"git add"
]
}
}