-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
35 lines (35 loc) · 1012 Bytes
/
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
{
"private": true,
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop -o",
"serve": "gatsby serve",
"lint": "eslint . --ext .js,.jsx --ignore-path .gitignore",
"lint:fix": "eslint . --ext .js,.jsx --fix --ignore-path .gitignore"
},
"dependencies": {
"@emotion/core": "^10.0.7",
"emotion": "^10.0.7",
"gatsby": "^2.0.118",
"gatsby-plugin-emotion": "^4.0.3",
"gatsby-plugin-react-helmet": "^3.0.10",
"gatsby-source-prismic": "^2.2.0",
"html-to-react": "^1.3.4",
"prop-types": "^15.7.1",
"react": "^16.8.1",
"react-dom": "^16.8.1",
"react-helmet": "^5.2.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"dotenv": "^7.0.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4"
}
}