-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.64 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": "cruftless-craft",
"description": "",
"version": "1.1.0",
"author": "Ben Rogerson",
"dependencies": {
"@reach/router": "^1.2.1",
"babel-plugin-lodash": "^3.3.4",
"core-js": "^3.3.2",
"gatsby": "2.16.5",
"gatsby-cli": "2.8.3",
"gatsby-plugin-catch-links": "2.1.15",
"gatsby-plugin-feed": "2.3.19",
"gatsby-plugin-google-analytics": "2.1.23",
"gatsby-plugin-offline": "3.0.16",
"gatsby-plugin-react-helmet": "3.1.13",
"gatsby-plugin-sass": "2.1.20",
"gatsby-plugin-sharp": "2.2.32",
"gatsby-plugin-sitemap": "2.2.19",
"gatsby-plugin-twitter": "2.1.12",
"gatsby-remark-autolink-headers": "2.1.16",
"gatsby-remark-copy-linked-files": "2.1.28",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "3.1.28",
"gatsby-remark-prismjs": "3.3.20",
"gatsby-remark-responsive-iframe": "2.2.25",
"gatsby-remark-smartypants": "^2.1.14",
"gatsby-source-filesystem": "2.1.33",
"gatsby-transformer-remark": "2.6.30",
"lodash": "^4.17.15",
"lodash-webpack-plugin": "^0.11.5",
"node-sass": "^4.12.0",
"prismjs": "^1.17.1",
"react": "^16.10.2",
"react-disqus-comments": "^1.4.0",
"react-dom": "^16.10.2",
"react-helmet": "^5.2.1",
"react-share": "^3.0.1",
"react-twitter-widgets": "^1.7.1",
"remarkable-embed": "^0.4.1"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"cli-glob": "^0.1.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"gatsby-plugin-remove-trailing-slashes": "^2.1.12",
"prettier": "^1.18.2",
"remark-cli": "^7.0.0",
"remark-preset-lint-recommended": "^3.0.3",
"webpack": "^4.41.2"
},
"license": "MIT",
"main": "n/a",
"scripts": {
"dev": "gatsby develop",
"start": "npm run dev",
"build": "gatsby build",
"bs": "gatsby build && gatsby serve",
"clean": "rm -rf public",
"write-good": "write-good $(glob 'content/posts/**/*.md')",
"test": "echo \"Error: no test specified\" && exit 1"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"prettier": {
"trailingComma": "es5",
"useTabs": false,
"tabWidth": 4,
"semi": false,
"singleQuote": true
}
}