forked from prismicio-community/gatsby-starter-prismic-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·44 lines (44 loc) · 1.32 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
{
"name": "gatsbyjs-blog",
"description": "Sample blog built with Gatsby.js using Prismic headless CMS",
"author": "Prismic",
"dependencies": {
"@prismicio/helpers": "^2.0.0",
"@prismicio/react": "^2.0.3",
"gatsby": "^4.3.0",
"gatsby-plugin-image": "^2.3.0",
"gatsby-plugin-manifest": "^4.3.0",
"gatsby-plugin-prismic-previews": "^5.2.1",
"gatsby-plugin-react-helmet": "^5.3.0",
"gatsby-plugin-sass": "^5.3.0",
"gatsby-plugin-sharp": "^4.3.0",
"gatsby-source-filesystem": "^4.3.0",
"gatsby-source-prismic": "^5.2.3",
"node-sass": "^6.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"dotenv": "^10.0.0",
"eslint": "^8.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.5.0"
},
"license": "Apache-2.0",
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,json,scss,md}\"",
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run clean && npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"start:prod": "npm run clean && npm run build && npm run serve"
},
"repository": {
"type": "git",
"url": "https://github.com/prismicio/gatsby-blog"
}
}