forked from prismicio/gatsby-multi-language-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "multi-language-site",
"description": "Sample multi-language website with Prismic CMS & Gatsby.js",
"version": "0.1.0",
"author": "@PaulinaVPG <paulina.gavilan@prismic.io>",
"dependencies": {
"gatsby": "^2.23.7",
"gatsby-image": "^2.4.7",
"gatsby-plugin-manifest": "^2.4.12",
"gatsby-plugin-offline": "^3.2.11",
"gatsby-plugin-react-helmet": "^3.3.4",
"gatsby-plugin-sass": "^2.3.4",
"gatsby-plugin-sharp": "^2.6.12",
"gatsby-source-filesystem": "^2.3.12",
"gatsby-source-prismic": "^3.3.0",
"gatsby-transformer-sharp": "^2.5.5",
"node-sass": "^4.14.1",
"prismic-javascript": "^2.7.1",
"prismic-reactjs": "^1.3.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"eslint": "^7.3.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4"
},
"license": "Apache-2.0",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"start": "npm run dev",
"serve": "gatsby serve",
"clean": "gatsby clean",
"start:prod": "npm run clean && npm run build && npm run serve"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
}
}