-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
{
"name": "GraphLinq.ScrapperAPI",
"version": "1.0.0",
"author": "jr00t",
"description": "GraphLinq cron to scrape data from external sites",
"license": "MIT",
"main": "lib",
"private": true,
"repository": "https://github.com/GraphLinq/GraphLinq.ScrapperAPI",
"scripts": {
"build": "tsc",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'yarn start'",
"start": "ts-node src",
"test": "mocha",
"pretty": "npx prettier --write ."
},
"dependencies": {
"@godaddy/terminus": "^4.12.1",
"@types/bluebird": "^3.5.42",
"@types/bull": "^4.10.0",
"@types/cors": "^2.8.17",
"@types/eth-sig-util": "^2.1.5",
"@types/express": "^4.17.21",
"@types/express-jwt": "^7.4.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/validator": "^13.12.0",
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"bull": "^4.15.1",
"chalk": "^5.3.0",
"clui": "^0.3.6",
"coingecko-api": "^1.0.10",
"console-remote-client": "^2.1.17",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eth-sig-util": "^3.0.0",
"ethereumjs-util": "^7.0.5",
"express": "^4.19.2",
"express-crud-router": "^8.0.2",
"express-jwt": "^8.4.1",
"figlet": "^1.7.0",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.3.1",
"morgan": "^1.10.0",
"mysql2": "^3.10.3",
"node-cleanup": "^2.1.2",
"node-uuid": "^1.4.8",
"sequelize": "^6.37.3",
"web3": "^4.11.0",
"web3-eth-contract": "^4.6.0",
"winston": "^3.13.1",
"winston-transport": "^4.7.1"
},
"devDependencies": {
"mocha": "^10.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"resolutions": {
"ethereumjs-util": ">=6.0.0"
}
}