-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.28 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
74
75
{
"name": "gatbsy-wordpress-starter",
"private": true,
"description": "An unopinionated starter for Gatsby and WordPress.",
"version": "0.1.0",
"author": "Nate Arnold <[email protected]>",
"dependencies": {
"gatsby": "^2.24.50",
"gatsby-cli": "^2.12.91",
"gatsby-image": "^2.4.16",
"gatsby-plugin-manifest": "^2.4.24",
"gatsby-plugin-offline": "^3.2.26",
"gatsby-plugin-prefetch-google-fonts": "^1.4.3",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.6.28",
"gatsby-source-filesystem": "^2.3.25",
"gatsby-source-wordpress-experimental": "^1.3.8",
"gatsby-transformer-sharp": "^2.5.13",
"intersection-observer": "^0.11.0",
"moment": "^2.27.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-is": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.2",
"@types/node": "^14.6.3",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"babel-jest": "^26.3.0",
"babel-preset-gatsby": "^0.5.8",
"gh-pages": "^3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.4.2",
"jest-preset-gatsby": "^1.0.78",
"prettier": "2.1.1"
},
"keywords": [
"gatsby",
"wordpress",
"typescript",
"jest",
"graphql",
"react-testing-library",
"gatsby-cloud",
"netlify"
],
"license": "MIT",
"scripts": {
"build": "gatsby build --log-pages",
"clean": "gatsby clean",
"deploy:github": "gatsby build && gh-pages -d public",
"deploy:netlify": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"packages": "yarn upgrade-interactive --latest",
"playground": "GATSBY_GRAPHQL_IDE=playground gatsby develop",
"serve": "gatsby serve",
"start": "yarn develop",
"test": "jest",
"test:watch": "yarn test --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/arnonate/gatsby-wordpress-starter"
},
"bugs": {
"url": "https://github.com/arnonate/gatbsy-wordpress-starter/issues"
}
}