-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.05 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
{
"name": "gatsby-getting-started-tutorial",
"description": "A simple tutorial to get started with Prismic & Gatsby.js",
"version": "0.1.0",
"dependencies": {
"gatsby": "^2.29.2",
"gatsby-image": "^2.8.0",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-manifest": "^2.9.1",
"gatsby-plugin-react-helmet": "^3.7.0",
"gatsby-plugin-sharp": "^2.11.2",
"gatsby-source-filesystem": "^2.8.1",
"gatsby-source-prismic": "^3.3.2",
"gatsby-transformer-sharp": "^2.9.0",
"prismic-reactjs": "^1.3.3",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^3.0.0"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"start": "npm run clean && npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean"
}
}