-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (45 loc) · 1.33 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
{
"name": "gql-typed-query-builder",
"version": "0.0.1",
"description": "A simple query builder for GraphQL with TypeScript support",
"repository": {
"type": "git",
"url": "git+https://github.com:claudioluciano/gql-typed-query-builder.git"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc",
"dev:debug": "ts-node-dev --transpile-only --respawn --inspect=4321 --project tsconfig.dev.json src/index.ts",
"dev": "ts-node-dev --transpile-only --respawn --project tsconfig.dev.json src/index.ts",
"test": "jest"
},
"keywords": [
"graphql",
"query",
"builder",
"javascript"
],
"author": "Claudio Luciano (claudioluciano)",
"license": "MIT",
"bugs": {
"url": "https://github.com/claudioluciano/gql-typed-query-builder/issues"
},
"homepage": "https://github.com/claudioluciano/gql-typed-query-builder",
"devDependencies": {
"@types/jest": "^29.2.2",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"eslint": "^8.26.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.4.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.2.2",
"ts-jest": "^29.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
}
}