-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "hasura-camelize",
"version": "2.0.2",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"module": "build/module/index.js",
"license": "MIT",
"bin": "./bin/cli.js",
"scripts": {
"dev": "run-p build:* && node dev.js",
"build": "run-p build:*",
"build:main": "tsc -p tsconfig.main.json",
"build:module": "tsc -p tsconfig.module.json"
},
"dependencies": {
"camelcase": "^6.2.0",
"dotenv": "^12.0.3",
"node-fetch": "^2.6.1",
"pluralize": "^8.0.0",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/node-fetch": "^2.5.12",
"@types/pluralize": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
}
}