-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 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
{
"name": "hemiconnector",
"version": "1.0.0",
"description": "Application to connect Hemi Network to External Services",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": true,
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"collect-metrics": "node dist/presentation/cli/CollectMetrics.js",
"give-points": "node ./src/presentation/cli/GivePoints.ts",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "vitest run",
"test:cov": "vitest run --coverage",
"test:watch": "vitest watch"
},
"author": "Thomas Alvarenga <[email protected]>",
"license": "MIT",
"dependencies": {
"hemi-viem": "1.7.0",
"typescript": "5.6.3",
"viem": "2.17.3"
},
"devDependencies": {
"@types/node": "18.19.62",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@vitest/coverage-c8": "0.23.4",
"eslint": "8.57.1",
"eslint-config-standard-with-typescript": "22.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-sonarjs": "0.15.0",
"vitest": "0.23.4"
}
}