-
Notifications
You must be signed in to change notification settings - Fork 171
/
package.json
76 lines (76 loc) · 2.05 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
{
"name": "json-graphql-server",
"version": "3.0.1",
"type": "module",
"main": "./dist/json-graphql-server.cjs",
"module": "./dist/json-graphql-server.js",
"exports": {
".": {
"import": "./dist/json-graphql-server.js",
"require": "./dist/json-graphql-server.cjs"
},
"./node": {
"import": "./dist/json-graphql-server-node.js",
"require": "./dist/json-graphql-server-node.cjs"
}
},
"repository": "git@github.com:marmelab/json-graphql-server.git",
"authors": [
"François Zaninotto",
"Gildas Garcia"
],
"files": [
"*.md",
"dist",
"src",
"bin"
],
"license": "MIT",
"scripts": {
"format": "make format",
"precommit": "lint-staged",
"test": "jest",
"watch-test": "make watch-test",
"server": "make run",
"prepublish": "make build"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@types/jest": "^29.5.12",
"babel-eslint": "^10.0.3",
"babel-jest": "^29.7.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"supertest": "^6.3.4",
"vite": "^5.2.8"
},
"dependencies": {
"@apollo/client": "^3.9.11",
"@graphql-tools/schema": "^10.0.3",
"cors": "^2.8.5",
"express": "^4.17.3",
"express-graphql": "^0.9.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"graphql-type-json": "^0.3.2",
"inflection": "^3.0.0",
"lodash.merge": "^4.6.2",
"reify": "^0.20.12",
"xhr-mock": "^2.5.1"
},
"bin": {
"json-graphql-server": "bin/json-graphql-server.js"
}
}