-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
122 lines (122 loc) · 3.57 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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "hasura-cli",
"version": "2.38.0",
"license": "MIT",
"private": false,
"engines": {
"node": ">=16"
},
"type": "module",
"scripts": {
"postinstall": "node dist/index.js",
"husky-skip": "cross-env HUSKY_SKIP_HOOKS=1",
"verdaccio": "verdaccio --config ./verdaccio/conf/default.yaml",
"lint": "eslint --fix",
"lint:md": "markdownlint --fix",
"lint:all": "pnpm lint . && pnpm lint:md .",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
"build": "shx rm -rf dist/* && tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json -w",
"prepublishOnly": "pnpm build",
"dev:build": "concurrently 'tsc -w -i' 'nodemon dist/index.js'",
"dev:no-respawn": "dotenv -- ts-node-dev --transpileOnly src/index.ts",
"dev": "dotenv -- ts-node-dev --transpileOnly --respawn src/index.ts",
"ts": "dotenv -- node --no-warnings --loader ts-node/esm",
"start": "node dist/index.js",
"prepare": "husky install"
},
"lint-staged": {
"hasura": [
"echo \"Error: Change to dummy file 'hasura' is blocked by default to prevent accidental commit of binary. If you want to change its content, try again by ignoring husky.\" && exit 1"
],
"*.?({c,m}){j,t}s?(x)": [
"pnpm lint"
],
"*.md": [
"pnpm lint:md"
]
},
"packageManager": "pnpm@8.14.1",
"prettier": "@jjangga0214/prettier-config",
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@jjangga0214/commitlint-config": "^1.1.0",
"@jjangga0214/eslint-config": "^5.1.0",
"@jjangga0214/jest-config": "^5.2.0",
"@jjangga0214/markdownlint-config": "^1.1.0",
"@jjangga0214/prettier-config": "^3.1.0",
"@jjangga0214/tsconfig": "^4.0.0",
"@swc/core": "^1.3.101",
"@swc/helpers": "^0.5.3",
"@swc/jest": "^0.2.29",
"@types/jest": "^29.5.11",
"@types/node": "16",
"@types/semver": "^7.5.0",
"commitizen": "^4.0.3",
"concurrently": "^6.0.0",
"cross-env": "^6.0.0",
"cz-conventional-changelog": "^3.0.2",
"dirname-filename-esm": "^1.1.1",
"dotenv-cli": "^2.0.1",
"eslint": "^8.56.0",
"execa": "^7.2.0",
"husky": "^7.0.0",
"jest": "^29.5.0",
"jest-junit": "^7.0.0",
"lint-staged": "^11.1.1",
"markdownlint-cli": "^0.38.0",
"nodemon": "^1.19.2",
"octokit": "^3.1.0",
"prettier": "^3.1.1",
"read-pkg": "^9.0.1",
"semver": "^7.5.4",
"shx": "^0.3.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3",
"upath": "^2.0.1"
},
"dependencies": {
"axios": "^1.6.0",
"chalk-template": "^1.1.0"
},
"exports": "./dist/index.js",
"files": [
"dist",
"hasura"
],
"bin": {
"hasura": "hasura"
},
"description": "A package that automatically installs and wraps Hasura CLI binary in isolated manner",
"repository": {
"type": "git",
"url": "git+https://github.com/jjangga0214/hasura-cli.git"
},
"bugs": {
"url": "https://github.com/jjangga0214/hasura-cli/issues"
},
"homepage": "https://github.com/jjangga0214/hasura-cli",
"author": {
"name": "Gil B. Chan",
"email": "bnbcmindnpass@gmail.com",
"url": "https://github.com/jjangga0214"
},
"keywords": [
"hasura",
"hasura-cli",
"hasura/cli",
"hasuracli",
"hasura/graphql-engine",
"hasura/graphql-engine/cli",
"hasura/graphql-engine-cli",
"hasura-graphql",
"hasura-graphql-engine",
"hasura-graphql-engine-cli",
"graphql-engine/cli",
"graphql-engine-cli",
"graphql",
"graphql-cli"
]
}