-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
98 lines (98 loc) Β· 2.95 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "duncanleung.com",
"description": "Personal website running on Gatsby, React, and Node.js.",
"version": "1.0.1",
"author": "Duncan Leung <duncan@leungs.email>",
"repository": "git@github.com:duncanleung/duncanleung.com",
"dependencies": {
"eslint-utils": "^3.0.0",
"gatsby": "^2.24.85",
"gatsby-image": "^2.2.41",
"gatsby-plugin-catch-links": "^2.3.15",
"gatsby-plugin-feed": "^2.3.27",
"gatsby-plugin-google-analytics": "^2.4.0",
"gatsby-plugin-manifest": "^2.4.35",
"gatsby-plugin-netlify": "^2.3.24",
"gatsby-plugin-nprogress": "^2.1.19",
"gatsby-plugin-offline": "^3.10.2",
"gatsby-plugin-react-helmet": "3.1.23",
"gatsby-plugin-sass": "^2.3.21",
"gatsby-plugin-sharp": "2.4.5",
"gatsby-plugin-sitemap": "2.2.27",
"gatsby-plugin-typography": "^2.3.22",
"gatsby-remark-autolink-headers": "^2.1.24",
"gatsby-remark-copy-linked-files": "^2.1.37",
"gatsby-remark-images": "3.1.44",
"gatsby-remark-prismjs": "3.3.31",
"gatsby-source-filesystem": "^2.1.48",
"lodash": "^4.17.20",
"gatsby-transformer-sharp": "2.5.19",
"gatsby-transformer-remark": "2.8.46",
"lodash.kebabcase": "^4.1.1",
"moment": "^2.24.0",
"node-sass": "^4.13.1",
"prismjs": "^1.21.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^5.2.1",
"react-typography": "^0.16.19",
"sharp": "^0.24.1",
"typography": "^0.16.19",
"url-join": "^4.0.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"cli-glob": "^0.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "6.10.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.8",
"prettier": "^1.19.1",
"remark-cli": "^7.0.1",
"remark-preset-lint-recommended": "^3.0.4",
"stylefmt": "^6.0.3",
"stylelint": "^13.2.0",
"stylelint-config-standard": "^20.0.0",
"write-good": "^1.0.8"
},
"resolutions": {
"sharp": "^0.24.1"
},
"keywords": [
"duncan leung",
"front end",
"software engineering",
"web development",
"development",
"dev",
"react",
"tutorials",
"tech",
"articles",
"blog"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "yarn run clean && yarn run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "yarn run clean && yarn run build:pp && gh-pages -d public",
"clean": "rm -rf public && rm -rf .cache",
"lint": "yarn run lint:js && yarn run lint:md",
"lint:js": "eslint --ext .js,.jsx .",
"lint:md": "remark content/posts/",
"write-good": "write-good $(glob 'content/posts/*.md')",
"format:js": "prettier '**/*.{js,jsx}' --write",
"check": "npx npm-check-updates -u"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}