-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·64 lines (64 loc) · 1.72 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
63
64
{
"name": "oasfi",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "18.x",
"npm": ">=7.0.0"
},
"scripts": {
"test": "jest",
"compile": "npx tsc && npx pkg .",
"lint": "eslint .",
"lint:fix": "eslint --fix --ext .ts ./src",
"codegen": "graphql-codegen --config src/codegen.ts",
"format": "prettier --write \"**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "2.16.4",
"@graphql-codegen/client-preset": "^1.2.6",
"@types/eslint": "8.40.2",
"@types/eslint-config-prettier": "^6.11.0",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/google-spreadsheet": "^3.3.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.6.3",
"@types/prettier": "^2.7.3",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"axios-mock-adapter": "^1.21.2",
"dotenv": "^16.3.1",
"eslint": "8.22",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-jasmine2": "^29.0.3",
"lint-staged": "^13.1.0",
"prettier": "^3.0.3",
"ts-jest": "^29.2.5",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
},
"bin": {
"oasys-csv-cli": "./dist/index.js"
},
"type": "commonjs",
"dependencies": {
"@google-cloud/functions-framework": "^3.1.3",
"coingecko-api-v3": "^0.0.26",
"ethers": "^5.7.2",
"google-spreadsheet": "^3.3.0",
"googleapis": "^110.0.0",
"graphql": "^16.8.1",
"graphql-request": "^5.1.0",
"moment-timezone": "^0.5.43",
"papaparse": "^5.4.1",
"winston": "^3.11.0"
}
}