-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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
{
"name": "graphql-directive-computed-property",
"version": "0.1.1",
"description": "GraphQL directive for create computed property",
"main": "dist/index.js",
"repository": "git@github.com:graphql-community/graphql-directive-computed-property.git",
"author": "Czysty <lukasz.czyszczonik@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "nodemon example/index.js",
"test": "jest",
"lint": "eslint . --ignore-path .gitignore",
"build": "babel index.js -d dist"
},
"peerDependencies": {
"graphql": "^0.13.2 || ^14.0.0",
"graphql-tools": "^2.23.1 || ^4.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.1.5",
"apollo-server-express": "^1.3.4",
"babel-jest": "^23.4.2",
"body-parser": "^1.18.2",
"eslint": "^4.19.1",
"eslint-config-callstack-io": "^1.1.1",
"express": "^4.16.3",
"graphql": "^0.13.2",
"graphql-directive-rest": "^0.1.1",
"graphql-tools": "^4.0.3",
"jest": "^23.6.0",
"nock": "^9.2.3",
"nodemon": "^1.19.4"
}
}