-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "@traderjoe-xyz/joe-cli",
"version": "0.0.3",
"description": "Trader Joe CLI tool for various monitoring tasks.",
"main": "dist/bin/cli.js",
"bin": {
"joe-cli": "dist/bin/cli.js"
},
"files":
["dist/*"],
"author": "Patate",
"license": "MIT",
"dependencies": {
"chalk": "4.1.2",
"cli-table3": "^0.6.1",
"commander": "^9.1.0",
"graphql": "^16.3.0",
"graphql-request": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.8",
"@graphql-codegen/typescript-operations": "2.3.5",
"@types/jest": "^27.4.1",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"tsc": "^2.0.4",
"typescript": "^4.6.3"
},
"scripts": {
"farms": "yarn tsc && node dist/bin/cli.js farm-allocations",
"create": "yarn run build && yarn run test",
"build": "yarn tsc -p .",
"test": "jest",
"refresh": "rm -rf ./node_modules ./package-lock.json && yarn install",
"codegen": "graphql-codegen --config codegen.yml"
}
}