-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.47 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": "jonastebbe",
"description": "Jonas Tebbe personal website",
"version": "1.0.0",
"author": "Jonas Tebbe <[email protected]>",
"dependencies": {
"gatsby": "next",
"gatsby-image": "^2.0.0-beta.6",
"gatsby-plugin-catch-links": "next",
"gatsby-plugin-google-analytics": "next",
"gatsby-plugin-lodash": "next",
"gatsby-plugin-manifest": "next",
"gatsby-plugin-nprogress": "next",
"gatsby-plugin-offline": "next",
"gatsby-plugin-react-helmet": "next",
"gatsby-plugin-sass": "next",
"gatsby-plugin-sharp": "^2.0.0-beta.6",
"gatsby-plugin-sharp-exif": "^1.0.1",
"gatsby-plugin-sitemap": "next",
"gatsby-remark-autolink-headers": "next",
"gatsby-remark-copy-linked-files": "next",
"gatsby-remark-images": "next",
"gatsby-remark-prismjs": "next",
"gatsby-remark-responsive-iframe": "next",
"gatsby-source-filesystem": "next",
"gatsby-transformer-remark": "next",
"gatsby-transformer-sharp": "^2.1.1-beta.5",
"lodash": "^4.17.4",
"moment": "^2.22.2",
"node-sass": "^4.9.2",
"prismjs": "^1.15.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"react-share": "^2.0.0",
"react-twitter-widgets": "^1.7.1",
"url-join": "^4.0.0"
},
"devDependencies": {
"cli-glob": "^0.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"gh-pages": "^1.1.0",
"normalize.css": "^8.0.0",
"prettier": "^1.10.2",
"purecss": "^1.0.0",
"remark-cli": "^5.0.0",
"remark-preset-lint-recommended": "^3.0.1",
"stylefmt": "^6.0.0",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.0.0",
"write-good": "^0.11.3"
},
"keywords": [
"gatsby"
],
"main": "n/a",
"scripts": {
"develop": "gatsby develop",
"dev": "npm run develop",
"serve": "gatsby serve",
"build": "gatsby build",
"build:pp": "gatsby build --prefix-paths",
"build:gh": "npm run clean && npm run build:pp && gh-pages -d public -b master",
"clean": "rm -rf public && rm -rf .cache",
"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"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
}
}