forked from ardeois/graphql-codegen-typescript-mock-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.81 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
77
78
79
80
81
82
83
84
85
86
{
"name": "graphql-codegen-typescript-mock-data",
"version": "3.7.2",
"description": "GraphQL Codegen plugin for building mock data",
"main": "dist/commonjs/index.js",
"module": "dist/esnext/index.js",
"typings": "dist/esnext/index.d.ts",
"repository": "ardeois/graphql-codegen-typescript-mock-data",
"author": {
"name": "Corentin Ardeois",
"email": "[email protected]",
"url": "https://github.com/ardeois"
},
"license": "MIT",
"keywords": [
"graphql",
"codegen",
"graphql-codegen",
"plugin",
"typescript",
"mocks",
"fakes"
],
"dependencies": {
"@faker-js/faker": "^7.5.0",
"@graphql-codegen/plugin-helpers": "^2.7.2",
"casual": "^1.6.2",
"change-case-all": "^1.0.15",
"indefinite": "^2.4.1",
"pascal-case": "^3.1.1",
"sentence-case": "^3.0.3",
"tslib": "^2.4.0",
"upper-case": "^2.0.1"
},
"peerDependencies": {
"graphql": "^14.6.0 || ^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@auto-it/conventional-commits": "^11.1.6",
"@graphql-codegen/testing": "^1.18.0",
"@graphql-codegen/typescript": "^2.8.3",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"auto": "^11.1.6",
"eslint": "8.0.1",
"eslint-config-landr": "0.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^16.3.0",
"husky": "^7.0.0",
"jest": "^27.3.1",
"jest-diff": "^27.5.1",
"lint-staged": "^11.2.3",
"prettier": "^2.4.1",
"prettier-config-landr": "^0.2.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"sideEffects": false,
"scripts": {
"build": "tsc -m esnext --outDir dist/esnext && tsc -m commonjs --outDir dist/commonjs",
"test": "TZ=UTC LANG=en_US.UTF8 jest",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix && tsc --noEmit",
"prettify": "prettier --config ./.prettierrc.js --write",
"auto:version": "yarn version --`auto version` --message 'Bump version to: %s [skip ci]'",
"auto:publish": "yarn publish && git push --follow-tags --set-upstream origin $CIRCLE_BRANCH",
"release": "auto changelog && yarn auto:version && yarn auto:publish && auto release",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --quiet --fix"
],
"*.{json,md,html}": [
"prettier --write"
]
},
"files": [
"dist/**/*",
"LICENSE",
"README.md"
]
}