This repository has been archived by the owner on Jan 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.9 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": "coinbase-pro-dca",
"version": "2.0.0",
"description": "A dollar cost averaging tool for Coinbase Pro",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "nodemon",
"build": "rm -rf ./build && tsc",
"purchase": "yarn run build && NODE_ENV=production node --es-module-specifier-resolution=node build/index.js",
"cron:enable": "mkdir -p .github/workflows; cp cron.yml .github/workflows/cron.yml",
"cron:disable": "rm -rf .github",
"lint": "eslint . --ext .ts --ignore-path .gitignore --cache --fix",
"format": "prettier 'src/**/*.ts' --write --ignore-path .gitignore",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swkeever/coinbase-pro-dca.git"
},
"keywords": [
"Coinbase Pro",
"Crypto",
"Investing"
],
"author": "Sean Keever",
"license": "ISC",
"bugs": {
"url": "https://github.com/swkeever/coinbase-pro-dca/issues"
},
"homepage": "https://github.com/swkeever/coinbase-pro-dca#readme",
"dependencies": {
"axios": "^0.21.4",
"coinbase-pro-node": "^3.0.7",
"dotenv": "^10.0.0",
"heap-js": "^2.1.6"
},
"devDependencies": {
"@types/node": "^16.9.1",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.12",
"prettier": "^2.4.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"singleQuote": true,
"printWidth": 80,
"bracketSpacing": false
},
"lint-staged": {
"*.ts": [
"yarn run lint",
"yarn run format"
]
}
}