-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.26 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": "how-to-install",
"author": "Stas Kardash (@RealPeha) [email protected]",
"private": true,
"version": "0.1.0",
"license": "0BSD",
"scripts": {
"start": "yarn dev",
"dev": "yarn clean && gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "eslint --ext .jsx --ext .js src/ --fix",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
},
"dependencies": {
"gatsby": "^2.26.1",
"gatsby-plugin-catch-links": "^2.10.0",
"gatsby-plugin-react-helmet": "^3.9.0",
"gatsby-remark-autolink-headers": "^2.9.0",
"gatsby-source-filesystem": "^2.8.1",
"gatsby-transformer-remark": "^2.13.1",
"github-slugger": "^1.3.0",
"prismjs": "^1.23.0",
"qs": "^6.9.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"smooth-scroll": "^16.1.3"
},
"devDependencies": {
"eslint": "^7.2.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": "^1.7.0",
"gh-pages": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/RealPehha/how-to-install"
},
"bugs": {
"url": "https://github.com/RealPehha/how-to-install/issues"
}
}