-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@prismicio/gatsby-source-prismic-graphql",
"version": "0.0.7",
"description": "Source data from Prismic with GraphQL",
"main": "index.js",
"scripts": {
"clean": "yarn clean-main && yarn clean-utils",
"clean-main": "rm -rf ./*.js",
"clean-utils": "rm -rf ./utils",
"build": "yarn build-main && yarn build-utils",
"build-main": "babel src/ --out-dir ./ --extensions '.ts,.tsx'",
"build-utils": "babel src/utils/ --out-dir ./utils/ --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",
"utils"
],
"keywords": [
"gatsby",
"gatsby-plugin",
"prismic",
"graphql",
"preview"
],
"author": "Birkir Gudjonsson <[email protected]>",
"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-source-graphql-universal": "^2.0.0",
"lodash": "^4.17.11",
"prismic-javascript": "^2.0.1",
"styled-components": "^4.1.3",
"traverse": "^0.6.6",
"url-pattern": "^1.0.3"
},
"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",
"@types/styled-components": "^4.1.12",
"@types/traverse": "^0.6.32",
"cross-env": "5.2.0",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.0",
"webpack-node-externals": "^1.7.2"
}
}