-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.55 KB
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
94
95
96
97
98
99
100
{
"name": "@goldfinch-eng/functions",
"version": "0.0.1",
"scripts": {
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --fix --ext .js,.ts .",
"build": "yarn graphql:codegen && tsc",
"gcp-build": "",
"serve": "yarn build && yarn firebase emulators:exec --ui --project=dev \"tsc -w --preserveWatchOutput\"",
"shell": "yarn build && yarn firebase functions:shell",
"start": "yarn serve",
"start:local": "CHAIN_IDENTIFIER=http://localhost:8545 LOCAL=yes yarn serve",
"start:murmuration": "MURMURATION=yes yarn start",
"logs": "firebase functions:log",
"test": "yarn build && NODE_OPTIONS=--unhandled-rejections=strict NODE_ENV=test yarn firebase emulators:exec --project=dev \"NODE_ENV=test npx hardhat test --show-stack-traces\"",
"ci_test": "COMMIT_ID_FOR_TEST=$GITHUB_SHA yarn test",
"ci_functions_config_set": "yarn firebase functions:config:set sentry.release=$GITHUB_SHA",
"ci_functions_config_set_dev": "yarn ci_functions_config_set --project=dev",
"ci_functions_config_set_prod": "yarn ci_functions_config_set --project=prod",
"pre-commit": "yarn lint-staged",
"pre-deploy": "yarn ts-node scripts/preDeploy.ts",
"graphql:codegen": "graphql-codegen --config codegen.yml"
},
"engines": {
"node": "16"
},
"files": [
"lib/functions/src/**"
],
"main": "lib/functions/src/index.js",
"lint-staged": {
"*.(js(x)?|ts(x)?)": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@goldfinch-eng/pools": "^0.0.0",
"@goldfinch-eng/protocol": "^0.1.0",
"@goldfinch-eng/utils": "^0.0.1",
"@sentry/integrations": "^6.8.0",
"@sentry/serverless": "^6.8.0",
"@slack/web-api": "^6.8.0",
"@svgdotjs/svg.js": "^3.1.2",
"@types/node-fetch": "^2.6.3",
"@types/validator": "^13.7.14",
"bignumber.js": "^9.0.2",
"defender-autotask-utils": "^1.37.0",
"dotenv": "^14.2.0",
"ethers": "^5.7.2",
"firebase": "^9.21.0",
"firebase-admin": "^11.7.0",
"firebase-functions": "^4.3.1",
"graphql": "^16.6.0",
"graphql-request": "^4.2.0",
"graphql-tag": "^2.12.6",
"hardhat": "^2.12.2",
"hardhat-deploy": "0.9.1",
"svgdom": "^0.1.10",
"validator": "^13.9.0"
},
"devDependencies": {
"@firebase/rules-unit-testing": "^2.0.7",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.10",
"@graphql-codegen/typescript-graphql-request": "^4.4.7",
"@graphql-codegen/typescript-operations": "2.3.7",
"@graphql-codegen/typescript-react-query": "^3.5.11",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-truffle5": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@types/chai-subset": "^1.3.3",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.9",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"eslint": "^8.28.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha-no-only": "^1.1.1",
"eslint-plugin-prettier": "^4.0.0",
"firebase-functions-test": "^3.1.0",
"firebase-tools": "^11.29.1",
"lint-staged": "^13.1.0",
"mocha": "^10.1.0",
"mocha-each": "^2.0.1",
"prettier": "^2.8.0",
"sinon": "^11.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.9.3"
},
"private": true
}