-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
45 lines (45 loc) · 1.37 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
{
"name": "netlify-faunadb-graphql-auth",
"version": "0.1.1",
"description": "Netlify functions example with faunadb, graphql, and authorization",
"scripts": {
"create-db": "netlify dev:exec node scripts/create-database.js",
"create-data": "netlify dev:exec node scripts/create-example-data.js",
"bootstrap": "npm run create-db && npm run create-data",
"build": "parcel build src/index.html",
"dev": "parcel --log-level 2 src/index.html",
"format": "prettier \"src/**/*.{js,html}\" --write",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet"
},
"keywords": [
"netlify",
"faunadb",
"graphql",
"http-cookies"
],
"author": "Paul Paterson",
"license": "MIT",
"dependencies": {
"@apollo/client": "^3.3.2",
"apollo-link-context": "^1.0.20",
"apollo-link-http": "^1.5.17",
"apollo-server-lambda": "^2.19.0",
"apollo-server-plugin-http-headers": "^0.1.4",
"draft-js": "^0.11.7",
"faunadb": "^4.0.0",
"graphql": "^15.4.0",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.2.1",
"request": "^2.88.2"
}
}