-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.98 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
{
"name": "swapr-coingecko",
"version": "1.0.0",
"description": "A proxy API to fetch multi-chain data mainly about Swapr liquidity mining campaigns.",
"main": "index.js",
"author": "Federico Luzzi <fedeluzzi00@gmail.com>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/luzzif/swapr-coingecko.git"
},
"scripts": {
"prepare": "husky install",
"lint:eslint": "eslint --ext .ts ./app",
"lint:prettier": "prettier --check ./app",
"fix:eslint": "eslint --ext .ts --fix ./app",
"fix:prettier": "prettier --write ./app",
"lint:commit-message": "commitlint -e",
"local": "serverless offline",
"sls-deploy": "NODE_ENV=production serverless deploy"
},
"dependencies": {
"@swapr/sdk": "1.7.0-beta.0",
"@ethersproject/abi": "^5.7.0",
"@ethersproject/address": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/constants": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.7.0",
"decimal.js-light": "^2.5.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"node-fetch": "2"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/aws-lambda": "^8.10.101",
"@types/node": "^18.11.4",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.2",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"fork-ts-checker-webpack-plugin": "^7.2.13",
"husky": "^8.0.1",
"prettier": "^2.7.1",
"serverless": "^3.23.0",
"serverless-offline": "^11.1.3",
"serverless-webpack": "^5.10.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-node-externals": "^3.0.0"
}
}