-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.11 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
{
"name": "@graphql-utils/store",
"version": "1.0.0-alpha.2",
"description": "In-memory data store for writing stateful GraphQL mocks.",
"author": "Mohammad Ataei",
"license": "MIT",
"keywords": [
"graphql",
"graphql-store",
"graphql-mock"
],
"repository": {
"type": "git",
"url": "https://github.com/graphql-utils/store/"
},
"bugs": {
"url": "https://github.com/graphql-utils/store/issues"
},
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && unbuild",
"test": "vitest --ui --open=false",
"typecheck": "vitest --typecheck",
"coverage": "vitest run --coverage",
"format": "prettier --write . && pnpm lint --fix",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepare": "husky install && pnpm codegen",
"pre-commit": "lint-staged",
"codegen": "graphql-codegen"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"peerDependencies": {
"graphql": "^16.6.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@graphql-codegen/cli": "5.0.0",
"@graphql-codegen/typescript": "4.0.1",
"@ngneat/falso": "^7.1.1",
"@rollup/plugin-graphql": "^2.0.4",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"graphql": "^16.8.1",
"graphql-tag": "^2.12.6",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "3.1.1",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vite": "^5.0.10",
"vitest": "^1.0.4"
},
"dependencies": {
"nanoid": "^5.0.4"
},
"packageManager": "[email protected]",
"engineStrict": true,
"engines": {
"node": ">=17"
}
}