-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.71 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
{
"name": "profit-taker-9000",
"description": "Find a strategy to take profits on your crypto",
"version": "0.0.0",
"author": "Roman Scher",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/scherroman/profit-taker-9000.git"
},
"main": "build/source/index.js",
"types": "build/source/index.d.ts",
"files": [
"build/**/*",
"binaries/**/*",
"source/**/*"
],
"bin": {
"profit-taker-9000": "binaries/commandLineInterface.js"
},
"scripts": {
"lint": "eslint source binaries tests --ext .ts",
"typecheck": "tsc --noEmit",
"staticcheck": "npm run lint && npm run typecheck",
"test": "jest",
"run": "ts-node -r tsconfig-paths/register",
"prebuild": "rm -rf build",
"build": "tsc -p ./tsconfig.build.json",
"check": "npm run staticcheck && npm run test && npm run build",
"prepare": "ts-patch install -s && husky install",
"precommit": "npm run check"
},
"devDependencies": {
"@types/fs-extra": "9.0.13",
"@types/jest": "28.1.6",
"@typescript-eslint/eslint-plugin": "5.31.0",
"eslint": "8.20.0",
"eslint-plugin-jest": "26.6.0",
"husky": "7.0.2",
"jest": "28.1.3",
"prettier": "2.3.2",
"ts-jest": "28.0.7",
"ts-node": "10.9.1",
"ts-patch": "2.0.2",
"tsconfig-paths": "4.1.0",
"typescript": "4.7.4",
"typescript-transform-paths": "3.3.1"
},
"dependencies": {
"axios": "0.27.2",
"csv": "5.5.2",
"date-fns": "2.23.0",
"fs-extra": "10.1.0",
"yargs": "17.5.1",
"zod": "3.19.1"
}
}