-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "reactive-graphql-react",
"version": "0.0.0-development",
"description": "React bindings for reactive-graphql",
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"prepare": "npm run build",
"prebuild": "npm run clean",
"build": "tsc -p tsconfig.dist.json",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"main": "./dist/index.js",
"typings": "dist/index",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/DanielMSchmidt/reactive-graphql-react.git"
},
"keywords": [
"graphql",
"react",
"reactive-graphql",
"rxjs"
],
"author": "Daniel Schmidt <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DanielMSchmidt/reactive-graphql-react/issues"
},
"homepage": "https://github.com/DanielMSchmidt/reactive-graphql-react#readme",
"devDependencies": {
"@types/jest": "29.5.3",
"graphql-tag": "2.12.6",
"graphql-tools": "9.0.0",
"jest": "29.6.2",
"jest-react": "0.14.0",
"prettier": "2.8.8",
"react": "18.2.0",
"react-test-renderer": "18.2.0",
"semantic-release": "21.1.2",
"travis-deploy-once": "5.0.11",
"ts-jest": "29.1.0",
"typescript": "5.1.5"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"dependencies": {
"reactive-graphql": "^4.0.0",
"rxjs": "^7.0.0"
}
}