-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.43 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
{
"name": "721tools-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "cross-env NODE_ENV=development nodemon src/app.ts",
"start:stage": "cross-env NODE_ENV=staging nodemon src/app.ts",
"start:prod": "cross-env NODE_ENV=production nodemon src/app.ts",
"build": "tsc",
"lint": "tslint -p tsconfig.json"
},
"dependencies": {
"@flashbots/ethers-provider-bundle": "^0.5.0",
"@metamask/eth-sig-util": "^4.0.1",
"@truffle/hdwallet-provider": "^2.0.7",
"ethers": "^5.6.4",
"got-scraping": "^3.2.10",
"koa": "^2.13.4",
"koa-body-parser": "^1.1.2",
"koa-bodyparser": "^4.3.0",
"koa-generic-session": "^2.3.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-redis": "^4.0.1",
"koa-router": "^10.1.1",
"koa-session": "^6.2.0",
"koa2-cors": "^2.0.6",
"lodash": "^4.17.21",
"log4js": "^6.4.5",
"mysql": "^2.18.1",
"mysql2": "^2.3.3",
"opensea-js": "^4.0.11",
"rate-limiter-flexible": "^2.3.7",
"redis": "^4.3.1",
"sequelize": "^6.19.0",
"siwe": "^1.1.6",
"underscore": "^1.13.3",
"web3": "^1.7.3"
},
"devDependencies": {
"@types/koa": "^2.13.4",
"@types/lodash": "^4.14.182",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"koa": "^2.6.2",
"koa-cors": "^0.0.16",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^4.6.3"
}
}