This repository was archived by the owner on Jun 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
48
{
"name": "fauna-fields-list-compile",
"version": "0.5.1",
"description": "A POC for a GraphQL to FaunaDB FQL compiler and general utility to produce FaunaDB queries from a fields list.",
"repository": {
"type": "git",
"url": "https://github.com/ptpaterson/fauna-fields-list-compiler"
},
"main": "dist/index.js",
"files": [
"/dist"
],
"typings": "dist/index.d.ts",
"scripts": {
"example-apollo": "nodemon node ./examples/apollo/server.js",
"example-standalone": "node ./examples/standalone/index.js",
"build": "tsc",
"buildw": "tsc -w",
"clean": "rimraf dist/*",
"lint": "eslint .",
"postbuild": "prettier --write \"./build/**/*.{js,ts}\"",
"prebuild": "npm run clean"
},
"author": "Paul Paterson",
"license": "MIT",
"keywords": [
"faunadb",
"graphql"
],
"dependencies": {
"faunadb": "^2.14.2",
"graphql": "^14.7.0",
"graphql-fields": "^2.0.3"
},
"devDependencies": {
"@types/graphql-fields": "^1.3.2",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"apollo-server": "^2.16.0",
"dotenv": "^8.2.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
}
}