-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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
{
"name": "transform-graphql",
"version": "0.0.4",
"private": false,
"license": "MIT",
"description": "Generate GraphQL Schema from another schema with directives",
"homepage": "https://graphqleditor.com",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "ttsc -p tsconfig.build.json",
"start": "ttsc -p tsconfig.build.json --watch",
"test": "jest",
"lint": "ttsc && eslint \"./src/**/*.{ts,js}\" --quiet --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql-editor/transform-graphql.git"
},
"bugs": {
"url": "https://github.com/graphql-editor/transform-graphql.git"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-env": "^7.16.11",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.19",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.5.0",
"ttypescript": "^1.5.13",
"typescript": "^4.5.5",
"typescript-transform-paths": "^3.3.1"
},
"dependencies": {
"graphql-js-tree": "^0.1.1"
}
}