-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·80 lines (80 loc) · 2.33 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "blog-dickwyn",
"private": true,
"description": "personal blog",
"version": "0.1.0",
"author": "Dick Wyn Yong <dickwyn@outlook.com>",
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"lint": "eslint \"src/**/*.js\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-brands-svg-icons": "^5.11.2",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/react-fontawesome": "^0.1.7",
"@reach/router": "^1.2.1",
"gatsby": "^2.13.44",
"gatsby-image": "^2.2.7",
"gatsby-plugin-dark-mode": "^1.1.0",
"gatsby-plugin-google-analytics": "^2.1.17",
"gatsby-plugin-manifest": "^2.2.4",
"gatsby-plugin-netlify": "^2.1.23",
"gatsby-plugin-netlify-cms": "^4.1.26",
"gatsby-plugin-netlify-cms-paths": "^1.3.0",
"gatsby-plugin-offline": "^2.2.4",
"gatsby-plugin-react-helmet": "^3.1.2",
"gatsby-plugin-sass": "^2.1.12",
"gatsby-plugin-sharp": "^2.2.9",
"gatsby-remark-copy-linked-files": "^2.1.28",
"gatsby-remark-images": "^3.1.29",
"gatsby-remark-relative-images": "^0.2.3",
"gatsby-source-filesystem": "^2.1.6",
"gatsby-transformer-remark": "^2.6.19",
"gatsby-transformer-sharp": "^2.2.5",
"moment": "^2.24.0",
"netlify-cms-app": "^2.9.7",
"node-fetch": "^2.6.0",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"unist-util-select": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.1.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^5.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.4",
"prettier": "^1.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dickwyn/blog"
},
"bugs": {
"url": "https://github.com/dickwyn/blog/issues"
},
"husky": {
"hooks": {
"pre-commit": "",
"pre-push": ""
}
}
}