-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "graphql-codegen-mocks-plugin",
"version": "0.0.1",
"description": "Generates mocks based on real data from GraphQL",
"files": [
"dist",
"types.d.ts"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./preset": {
"import": "./dist/esm/presets/multi-mock-preset.js",
"require": "./dist/cjs/presets/multi-mock-preset.js"
}
},
"types": "types.d.ts",
"repository": "https://github.com/arrudaje/graphql-codegen-mocks-plugin.git",
"author": "arrudaje <arrudaje@gmail.com>",
"license": "MIT",
"private": false,
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc --module esnext --target esnext --outDir dist/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs"
},
"dependencies": {
"dashify": "^2.0.0",
"graphql": "^16.7.1",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.0.0-0",
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/plugin-helpers": "^5.0.0",
"@types/dashify": "^1.0.1",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"check-peer-dependencies": "^4.2.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"publint": "^0.1.12",
"ts-jest": "^29.1.0",
"typescript": "^5.1.5"
}
}