forked from birkir/gatsby-source-prismic-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "gatsby-source-prismic-graphql",
"version": "2.1.0",
"description": "Source data from Prismic with GraphQL",
"main": "index.js",
"scripts": {
"clean": "rm -rf ./*.js",
"build": "babel src --out-dir ./ --extensions '.ts,.tsx'",
"prepare": "yarn clean && cross-env NODE_ENV=production yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/birkir/gatsby-source-prismic-graphql.git"
},
"files": [
"*.js",
"src"
],
"keywords": [
"gatsby",
"gatsby-plugin",
"prismic",
"graphql",
"preview"
],
"author": "Birkir Gudjonsson <birkir.gudjonsson@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/birkir/gatsby-source-prismic-graphql/issues"
},
"homepage": "https://github.com/birkir/gatsby-source-prismic-graphql#readme",
"peerDependencies": {
"gatsby": ">2.0.0-alpha",
"react": "^16.0.0"
},
"dependencies": {
"apollo-boost": "^0.1.23",
"apollo-link-context": "^1.0.12",
"apollo-link-http-common": "^0.2.8",
"gatsby": "^2.0.91",
"gatsby-source-graphql-universal": "^2.0.0",
"lodash": "^4.17.11",
"prismic-javascript": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "7.1.2",
"@babel/core": "7.1.2",
"@babel/plugin-proposal-class-properties": "7.1.0",
"@babel/plugin-proposal-object-rest-spread": "7.0.0",
"@babel/plugin-transform-runtime": "7.1.0",
"@babel/preset-env": "7.1.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "7.1.0",
"@babel/runtime": "7.1.2",
"@types/lodash": "^4.14.119",
"@types/node": "10.12.0",
"@types/react": "16.4.18",
"cross-env": "5.2.0"
}
}