-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.56 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
{
"name": "gs-log",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"bin": {
"gs-log": "./bin/cli.js"
},
"scripts": {
"dev": "tsx watch -r dotenv-flow/config src/index.ts",
"start": "node -r dotenv-flow/config dist/index.js",
"lint": "eslint --cache --max-warnings=0 src",
"format": "prettier --write",
"lint:unused-exports": "ts-unused-exports ./tsconfig.json --maxIssues=0",
"build": "tsc",
"test": "vitest run --reporter verbose",
"test:watch": "vitest watch",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"todo": "leasot 'src/**/*.ts'"
},
"dependencies": {
"chainsauce": "github:gitcoinco/chainsauce#main",
"dotenv-flow": "^4.0.1",
"ethers": "^5.7.2",
"pino": "^8.17.1",
"split2": "^4.2.0",
"ts-custom-error": "^3.3.1",
"yargs": "^17.7.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/node": "^20.10.4",
"@types/split2": "^4.2.3",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-vitest": "^0.3.17",
"leasot": "^13.3.0",
"lefthook": "^1.4.8",
"pino-pretty": "^10.3.0",
"prettier": "^3.0.1",
"ts-unused-exports": "^10.0.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
}
}