-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
61 lines (61 loc) · 1.57 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
{
"name": "@miragejs/graphql",
"version": "0.1.13",
"description": "A library for handling GraphQL requests with Mirage JS",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"module": "dist/index-mjs.js",
"keywords": [
"pretender",
"prototype",
"server",
"testing",
"mirage",
"graphql"
],
"repository": {
"type": "git",
"url": "https://github.com/miragejs/graphql.git"
},
"license": "MIT",
"author": "Rocky Neurock",
"bugs": {
"url": "https://github.com/miragejs/graphql/issues"
},
"scripts": {
"build": "node build && tsc",
"lint": "eslint .",
"prepublishOnly": "node build && tsc",
"prettier:check": "prettier --list-different '**/*.js'",
"prettier:update": "prettier --write .",
"test": "jest"
},
"dependencies": {
"graphql": "^15.0.0",
"miragejs": "^0.1.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.9.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^26.0.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.0",
"graphql-request": "^2.0.0",
"graphql-tag": "^2.10.3",
"jest": "^26.6.3",
"jest-transform-graphql": "^2.1.0",
"jest-watch-typeahead": "^0.6.0",
"prettier": "^2.0.2",
"typescript": "^4.0.3"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
}
}