-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.05 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.05 KB
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
{
"name": "@dcos/data-service",
"main": "./dist/index.js",
"typings": "dist/index",
"files": [
"dist"
],
"version": "0.0.0-dev+semantic-release",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"prebuild": "npm run clean",
"clean": "rimraf dist",
"build": "tsc -p tsconfig.dist.json"
},
"peerDependencies": {
"graphql": "14.0.2",
"graphql-tag": "2.8.0",
"graphql-tools": "4.0.3",
"recompose": "0.26.0",
"rxjs": "6.3.3"
},
"devDependencies": {
"@types/graphql": "14.0.2",
"@types/jest": "23.3.10",
"@types/recompose": "0.26.0",
"graphql": "14.0.2",
"graphql-tag": "2.8.0",
"graphql-tools": "4.0.3",
"jest": "23.6.0",
"react": "16.6.3",
"recompose": "0.26.0",
"rimraf": "2.6.2",
"rxjs": "6.3.3",
"rxjs-marbles": "2.3.1",
"semantic-release": "15.12.4",
"ts-jest": "23.10.5",
"typescript": "3.2.1"
},
"dependencies": {
"reactive-graphql": "^2.0.0",
"symbol-observable": "^1.2.0"
}
}