-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
45
{
"name": "graphql-js-tree",
"version": "3.0.2",
"private": false,
"license": "MIT",
"description": "GraphQL Parser providing simplier structure",
"homepage": "https://graphqleditor.com",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tspc --build tsconfig.build.json",
"start": "tspc --build tsconfig.build.json --watch",
"test": "jest",
"lint": "tspc && eslint \"./src/**/*.{ts,js}\" --quiet --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql-editor/graphql-js-tree.git"
},
"bugs": {
"url": "https://github.com/graphql-editor/graphql-js-tree.git"
},
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"graphql": "^16.8.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"typescript": "5.5",
"typescript-transform-paths": "^3.4.6"
},
"peerDependencies": {
"graphql": "^16.0.0 || ^17.0.0"
}
}