-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.91 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
{
"name": "rbs-discord-alerts",
"main": "index.ts",
"scripts": {
"execute:events": "export $(cat .env | xargs) && ts-node src/handlePriceEvents.ts",
"execute:heartbeats": "export $(cat .env | xargs) && ts-node src/handleHeartbeat.ts",
"execute:snapshots": "export $(cat .env | xargs) && ts-node src/handleSnapshotCheck.ts",
"execute:targetPrice": "export $(cat .env | xargs) && ts-node src/handleTargetPriceChangedEvents.ts",
"codegen": "export $(cat .env | xargs) && graphql-codegen",
"build": "tsc",
"lint:fix": "eslint --config ./.eslintrc.js --fix",
"deploy:dev": "pulumi up --stack dev",
"deploy:prod": "pulumi up --stack prod"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.12.2",
"@graphql-codegen/typed-document-node": "^2.3.3",
"@graphql-codegen/typescript": "^2.7.3",
"@graphql-codegen/typescript-operations": "^2.5.3",
"@graphql-eslint/eslint-plugin": "^3.12.0",
"@graphql-typed-document-node/core": "^3.1.1",
"@pulumi/gcp": "^6.0.0",
"@pulumi/pulumi": "^3.0.0",
"@types/jest": "^29.2.3",
"@types/node": "^18",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"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",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@google-cloud/firestore": "^6.4.1",
"@urql/core": "^3.0.3",
"cross-fetch": "^3.1.5",
"dedent-js": "^1.0.1",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6"
}
}