-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 799 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 799 Bytes
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
{
"name": "nethermind-assignment",
"version": "1.0.0",
"main": "index.js",
"author": "fbrcode <fabio.bressler@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node ./src/index.ts | pino-pretty -i time,hostname,module,__in,name,pid",
"debug": "LOG_LEVEL=debug ts-node ./src/index.ts | pino-pretty -i time,hostname,module,__in,name,pid",
"test": "LOG_LEVEL=silent jest --verbose --detectOpenHandles"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/pg": "^8.6.5",
"jest": "^29.0.3",
"pino-pretty": "^9.1.0",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"dotenv": "^16.0.2",
"node-fetch": "2.6.1",
"pg": "^8.8.0",
"pino": "^8.5.0"
}
}