-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "auto-crypto-trader-jp",
"version": "0.0.1",
"description": "auto-crypto-trader-jp",
"main": "./dist/index.js",
"license": "BSD 2-Clause",
"author": "auto-crypto-trader-jp",
"scripts": {
"start": "node ./dist/index.js",
"dev": "ts-node-dev --deps --inspect=127.0.0.1:58080 ./src/index.ts",
"gcp-build": "tsc",
"build": "run-s clean tsc",
"tsc": "tsc",
"update:libs": "ncu -u",
"lint": "eslint --fix ./src/**/*.ts",
"format": "prettier --write ./src/**/*.ts",
"create-env": "printenv > .env",
"clean": "rimraf ./dist/*"
},
"dependencies": {
"axios": "0.21.1",
"ccxt": "1.42.100",
"dotenv": "8.2.0",
"express": "4.17.1",
"technicalindicators": "3.1.0"
},
"devDependencies": {
"@types/express": "4.17.11",
"@types/node": "14.14.27",
"@typescript-eslint/eslint-plugin": "4.15.0",
"@typescript-eslint/parser": "4.15.0",
"eslint": "7.20.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-prettier": "3.3.1",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"npm-check-updates": "11.1.3",
"npm-run-all": "4.1.5",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"ts-node-dev": "1.1.1",
"typescript": "4.1.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"eslint --fix"
]
}
}