-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
69 lines (69 loc) · 1.82 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "ethereum-api",
"description": "Ethereum Blockchain API Aggregator",
"version": "1.0.0",
"private": true,
"main": "src/index.ts",
"keywords": [
"blockchain",
"ethereum",
"web3",
"crypto",
"api",
"proxy",
"aggregator"
],
"author": "Pedro Gomes <[email protected]>",
"homepage": "https://ethereum-api.xyz",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pedrouid/ethreum-api.git"
},
"bugs": {
"url": "https://github.com/pedrouid/ethreum-api/issues"
},
"scripts": {
"clean": "rm -rf ./dist",
"compile": "tsc -p tsconfig.json",
"dev": "run-p -l watch nodemon",
"nodemon": "nodemon ./dist",
"watch": "tsc -p tsconfig.json --watch",
"build": "run-s clean compile",
"start": "npm run build && node ./dist",
"test": "env TS_NODE_PROJECT=\"tsconfig.json\" mocha --exit -r ts-node/register ./test/**/*.spec.ts",
"lint": "eslint -c --fix './src/**/*.ts'",
"deploy": "NODE_ENV=production pm2 start ./dist --name=server"
},
"dependencies": {
"@pedrouid/pino-utils": "^1.0.1",
"axios": "^0.21.1",
"bignumber.js": "^9.0.1",
"dotenv": "^8.2.0",
"fastify": "^3.10.1",
"fastify-cors": "^5.2.0",
"fastify-helmet": "^5.1.0",
"pino": "^6.11.0",
"pino-pretty": "^4.3.0",
"tslib": "^2.1.0",
"utf8": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/core-js": "^2.5.2",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.21",
"@types/pino": "^6.3.5",
"@types/redis": "^2.8.13",
"@types/ws": "^6.0.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"core-js": "^3.8.3",
"mocha": "^8.2.1",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"ts-node": "^9.1.1",
"typescript": "^3.7.5"
}
}