-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.87 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "api-airdrop",
"version": "2.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && tsc",
"changelog": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "rimraf dist",
"clean:all": "npm run clean && (rm -r ./node_modules || true)",
"cover": "nyc npm run test",
"dev": "ts-node index.js",
"cover:check": "nyc --check-coverage npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --ext .ts --fix src/**/*.ts test/**/*.ts",
"postversion": "git push && git push --tags",
"test": "mocha",
"upgrade": "npx npm-check -u",
"version": "npm run build && npm run changelog:update",
"start": "ts-node index.js",
"start:services": "ts-node services.js"
},
"devDependencies": {
"@types/async": "^3.2.16",
"@types/coingecko-api": "^1.0.13",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/nconf": "^0.10.2",
"@types/node": "^16.4.13",
"@types/node-cron": "^3.0.7",
"@types/passport": "^1.0.16",
"@types/passport-discord": "^0.1.11",
"@types/passport-twitter": "^1.0.40",
"@types/request-promise": "^4.1.48",
"@types/twit": "^2.2.35",
"@types/underscore": "^1.11.15",
"@types/valid-url": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"conventional-changelog-cli": "^2.0.12",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.2",
"ts-node": "^10.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@polkadot/api": "^10.11.2",
"@spruceid/siwe-parser": "*",
"@stablelib/random": "^1.0.1",
"axios": "^1.6.5",
"axios-retry": "^4.4.0",
"bluebird": "^3.7.2",
"body-parser": "^1.20.1",
"coingecko-api": "^1.0.10",
"cors": "^2.8.5",
"date-fns": "^2.29.3",
"discord.js": "^13.6.0",
"dotenv": "^16.0.1",
"ethers": "^6.6.0",
"ethers-multicall-provider": "^6.0.2",
"express": "^4.18.2",
"express-session": "^1.17.3",
"fast-csv": "^5.0.1",
"fs": "^0.0.1-security",
"googleapis": "^105.0.0",
"http": "^0.0.1-security",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.6.1",
"nconf": "^0.12.0",
"node-cache": "^5.1.2",
"node-cron": "^3.0.2",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"passport-twitter": "^1.0.4",
"qs": "^6.11.2",
"request-promise": "^4.2.6",
"twit": "^2.2.11",
"twitter-api-v2": "^1.14.2",
"underscore": "^1.13.6",
"uri-js": "^4.4.1",
"valid-url": "^1.0.9",
"web3": "^4.6.0"
}
}