This repository has been archived by the owner on Apr 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.28 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
{
"name": "rat-battle-auth",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "pnpm codegen && tsc && babel src --out-dir functions --extensions '.ts' && cp package.json functions/package.json",
"codegen": "graphql-codegen",
"format": "prettier -w \"./src/**/*.(js|ts|json|gql)\"",
"dev": "nodemon --exec 'babel-node src/dev.ts --extensions .ts'",
"deploy": "pnpm run compile && pnpm run gcloud --prefix functions/",
"deploy:dev": "pnpm run compile && pnpm run gcloud:dev --prefix functions/",
"gcloud": "gcloud functions deploy battle-actions --project=awwrats --entry-point=app --trigger-http --runtime=nodejs14 --allow-unauthenticated --region=us-east4",
"gcloud:dev": "gcloud functions deploy battle-actions-dev --project=awwrats --entry-point=app --trigger-http --runtime=nodejs14 --allow-unauthenticated --region=us-east4",
"test-actions": "act --secret-file .secrets.env"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.16.5",
"@babel/eslint-parser": "^7.16.5",
"@babel/node": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@graphql-codegen/introspection": "^2.1.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.4",
"babel-plugin-module-resolver": "^4.1.0",
"babel-watch": "^7.7.0",
"concurrently": "^6.5.1",
"eslint": "^8.5.0",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@google-cloud/functions-framework": "^2.1.0",
"@graphql-codegen/cli": "^2.3.0",
"@graphql-codegen/typescript": "^2.4.1",
"@graphql-codegen/typescript-graphql-request": "^4.3.2",
"@graphql-codegen/typescript-operations": "^2.2.1",
"axios": "^0.24.0",
"cookie-parser": "^1.4.6",
"core-js": "^3.21.1",
"date-fns": "^2.27.0",
"dotenv": "^10.0.0",
"ethereumjs-util": "^7.1.3",
"ethers": "^5.5.2",
"express": "^4.17.2",
"graphql": "15.7.2",
"graphql-request": "^3.7.0",
"graphql-tag": "^2.12.6",
"morgan": "^1.10.0",
"regenerator-runtime": "^0.13.9",
"rlp": "^2.2.7",
"tspath": "^1.3.7"
}
}