-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.65 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
{
"name": "dbanksdesign-website",
"private": true,
"description": "Website and blog for Danny Banks",
"version": "0.1.0",
"author": "Danny Banks <[email protected]>",
"bugs": {
"url": "https://github.com/dbanksdesign/dbanksdesign-gatsby/issues"
},
"homepage": "https://github.com/dbanksdesign/dbanksdesign-gatsby#readme",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/dbanksdesign/dbanksdesign-gatsby.git"
},
"scripts": {
"dev": "gatsby develop",
"style-dictionary": "style-dictionary build --config ./src/tokens/config.js",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\"",
"format": "prettier --trailing-comma es5 --no-semi --single-quote --write 'src/**/*.js' 'src/**/*.md'",
"develop": "gatsby develop",
"start": "npm run develop",
"build": "gatsby build",
"clean": "gatsby clean",
"serve": "gatsby serve",
"fix-semi": "eslint --quiet --ignore-pattern node_modules --ignore-pattern public --parser babel-eslint --no-eslintrc --rule '{\"semi\": [2, \"never\"], \"no-extra-semi\": [2]}' --fix gatsby-node.js",
"preload-fonts": "gatsby-preload-fonts"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "1.6.16",
"@mdx-js/tag": "^0.20.3",
"gatsby": "^3.4.0",
"gatsby-image": "^2.4.17",
"gatsby-plugin-feed": "^3.4.0",
"gatsby-plugin-google-analytics": "^3.4.0",
"gatsby-plugin-manifest": "^3.4.0",
"gatsby-plugin-mdx": "^1.2.39",
"gatsby-plugin-offline": "^4.4.0",
"gatsby-plugin-postcss": "^4.4.0",
"gatsby-plugin-react-helmet": "^4.4.0",
"gatsby-plugin-sharp": "^3.4.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-copy-linked-files": "^2.3.14",
"gatsby-remark-images": "3.3.29",
"gatsby-remark-prismjs": "^5.0.0",
"gatsby-remark-smartypants": "^2.3.10",
"gatsby-source-filesystem": "^3.4.0",
"gatsby-transformer-javascript-frontmatter": "^2.3.11",
"gatsby-transformer-remark": "^2.8.34",
"gatsby-transformer-sharp": "^3.4.0",
"mdx-utils": "^0.2.0",
"postcss-preset-env": "^6.7.0",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.23.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.11.0",
"react-live": "^2.2.3",
"react-twitter-widgets": "^1.7.1"
},
"devDependencies": {
"caniuse-lite": "^1.0.30001208",
"eslint": "^7.8.1",
"eslint-plugin-react": "^7.20.6",
"gatsby-plugin-preload-fonts": "^2.4.0",
"prettier": "^2.1.1"
}
}