-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
31 lines (31 loc) · 920 Bytes
/
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
{
"name": "coingecko-api",
"main": "src/index.ts",
"description": "Serves data on the Olympus protocol to the CoinGecko API",
"devDependencies": {
"@pulumi/gcp": "^6.45.0",
"@pulumi/pulumi": "^3.49.0",
"@types/node": "^18.16.7",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"dotenv": "^16.0.3",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@google-cloud/firestore": "^6.5.0",
"@olympusdao/treasury-subgraph-client": "^1.2.0",
"cross-fetch": "^3.1.5"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/app/cli.ts"
}
}