-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "backtest",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "yarn lint:ts && yarn build:ts",
"test": "yarn jest",
"jest": "jest --coverage",
"lint": "eslint ./src ./test --fix",
"lint:ts": "tslint -c tslint.json -p . --fix",
"build:ts": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cli-chart": "^0.3.1",
"technicalindicators": "^2.0.7"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-last": "^0.0.5",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.1",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"jest": "^24.5.0",
"pre-commit": "^1.2.2",
"prettier": "^1.17.0",
"tslint": "5.16.0",
"tslint-eslint-rules": "5.4.0",
"typescript-tslint-plugin": "0.5.4",
"tslint-no-focused-test": "0.5.0",
"typescript": "3.2.4"
},
"pre-commit": [
"test"
]
}