-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 KB
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
{
"name": "mimicql",
"version": "0.0.0-development",
"description": "Mimic your graphql API by quickly and easily generating mock graphql data in the browser and node.js",
"repository": "https://github.com/ravnhq/mimicql",
"author": "https://www.ravn.co/",
"bugs": {
"url": "https://www.github.com/ravnhq/mimicql/issues"
},
"homepage": "https://www.github.com/ravnhq/mimicql#readme",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist"
],
"scripts": {
"build": "tsc",
"watch-build": "npx tsc-watch",
"format:write": "yarn format --list-different --write",
"static": "npm-run-all --parallel -c tsc lint format:check",
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"format": "prettier .",
"format:check": "yarn format --check",
"validate": "npm-run-all typescript lint format:check",
"prepublishOnly": "yarn build",
"release": "yarn semantic-release",
"semantic-release": "semantic-release"
},
"keywords": [
"graphql",
"mock",
"test",
"mock data generator",
"msw",
"apollo",
"relay"
],
"dependencies": {
"apollo-utilities": "^1.3.4",
"graphql-tools": "^4.0.8"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@ravn-dev/eslint-config-ravn": "^4.0.1",
"@ravn-dev/prettier-config": "^1.0.0",
"@types/jest": "^26.0.19",
"babel-jest": "^26.6.3",
"eslint": "^7.15.0",
"graphql": "^15.4.0",
"graphql-tag": "^2.11.0",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"semantic-release": "^17.4.3",
"ts-node": "^9.1.1",
"typescript": "^3.9.7"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0"
}
}