-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "fester",
"version": "1.0.0",
"description": "A simple blockchain tx fee estimator",
"main": "index.js",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"scripts": {
"prepare": "husky install",
"start": "node dist/index.js",
"build": "tsc",
"dev": "ts-node src/index.ts",
"test": "jest --config jest.config.ts",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write \"src/**/*.ts\""
},
"keywords": [],
"author": "Don Luv",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.3.1",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"dotenv": "^16.3.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"pino-pretty": "^10.2.3",
"prettier": "^3.1.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"dependencies": {
"express": "^4.18.2",
"pino": "^8.16.2",
"web3": "^4.3.0"
}
}