-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "finense",
"version": "2.1.0",
"type": "module",
"description": "RESTful API to aggregate ENS records and estimate net worth",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"start": "node index.js",
"dev": "nodemon -L index.js",
"test": "node --experimental-vm-modules node_modules/.bin/jest --forceExit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Snorper/finense.git"
},
"author": "snorp.eth",
"license": "GPLv3",
"bugs": {
"url": "https://github.com/Snorper/finense/issues"
},
"homepage": "https://github.com/Snorper/finense#readme",
"dependencies": {
"dotenv": "^16.0.0",
"ethers": "^5.6.2",
"express": "^4.17.3",
"helmet": "^5.0.2",
"node-fetch": "^3.2.3",
"pino": "^7.10.0",
"pino-http": "^6.6.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2"
}
}