-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 932 Bytes
/
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
{
"name": "graphql-saga-client",
"version": "1.3.1",
"description": "a 'call' effect for GraphQL endpoint through redux-saga",
"main": "build/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"compile": "tsc",
"compile:watch": "tsc --w",
"prettify": "npx prettier --write ."
},
"keywords": [
"graphql",
"redux-saga",
"saga",
"effect"
],
"author": "Waddah-JD",
"repository": {
"type": "git",
"url": "https://github.com/Waddah-JD/graphql-saga-client.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^10.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
},
"dependencies": {
"axios": "^1.1.2"
}
}