-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "gatsby-graphql-source-toolkit",
"version": "2.0.4",
"description": "A toolkit designed to simplify data sourcing from a remote GraphQL API into Gatsby.",
"author": "Vladimir Razuvaev <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "rimraf dist/* && tsc",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"format": "prettier --list-different --write ./src"
},
"files": [
"dist/**"
],
"keywords": [
"gatsby",
"graphql"
],
"dependencies": {
"@types/node-fetch": "^2.5.7",
"fs-extra": "^9.0.1",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"p-queue": "^6.4.0"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"gatsby": "^5.1.0",
"graphql": "^16.6.0",
"jest": "^29.3.1",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"peerDependencies": {
"gatsby": "^3.0.0 || ^4.0.0 || ^5.0.0"
}
}