-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.22 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.22 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": "faunadb-graphql-lib",
"version": "0.2.2",
"description": "GraphQL <> FaunaDB utils",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"repository": "shiftx/faunadb-graphql-lib",
"files": [
"dist",
"LICENSE",
"README.md"
],
"author": "Eigil Sagafos",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && rollup -c && tsc",
"test": "jest",
"dev": "yarn test --watch",
"release": "yarn build && release-it",
"fauna": "docker run --rm --name faunadb -p 8443:8443 fauna/faunadb:2.12.2"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/preset-typescript": "^7.8.3",
"@types/jest": "^25.1.1",
"@types/node": "^13.7.1",
"@yarnpkg/pnpify": "^2.0.0-rc.18",
"eslint": "^6.8.0",
"faunadb": "^2.11.1",
"faunadb-fql-lib": "^0.10.0",
"graphql": "15.3.0",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"release-it": "^13.1.1",
"rollup": "^1.31.0",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.7.5"
},
"peerDependencies": {
"faunadb": "2.x",
"graphql": "*"
}
}