-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.35 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
{
"name": "karadere-gatsby",
"version": "0.0.1",
"description": "Karadere static web page build on Gatsby.js",
"scripts": {
"build": "gatsby build",
"content:migrate": "node scripts/xml-parser.js",
"develop": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"lint:js": "eslint \"**/*.{js,jsx}\"",
"lint": "run-p lint:*",
"precommit": "lint-staged",
"clean": "rm -rf public/ .cache/",
"start": "npm run develop"
},
"dependencies": {
"bulma": "0.7.2",
"gatsby": "2.0.98",
"gatsby-paginate": "1.0.17",
"gatsby-plugin-feed": "2.0.11",
"gatsby-plugin-google-tagmanager": "2.0.8",
"gatsby-plugin-lunr": "^1.4.0",
"gatsby-plugin-manifest": "2.0.13",
"gatsby-plugin-netlify": "2.0.7",
"gatsby-plugin-netlify-cms": "3.0.10",
"gatsby-plugin-nprogress": "2.0.7",
"gatsby-plugin-offline": "2.0.21",
"gatsby-plugin-react-helmet": "3.0.5",
"gatsby-plugin-sass": "2.0.7",
"gatsby-plugin-sharp": "2.0.18",
"gatsby-plugin-sitemap": "2.0.4",
"gatsby-remark-images": "3.0.1",
"gatsby-remark-relative-images": "0.2.1",
"gatsby-source-filesystem": "2.0.17",
"gatsby-transformer-remark": "2.2.0",
"gatsby-transformer-sharp": "2.1.12",
"lodash": "4.17.11",
"lodash-webpack-plugin": "0.11.5",
"netlify-cms": "2.3.3",
"node-sass": "4.11.0",
"prop-types": "15.6.2",
"react": "16.7.0",
"react-disqus-comments": "1.4.0",
"react-dom": "16.7.0",
"react-helmet": "5.2.0",
"react-share": "2.4.0",
"uglifyjs-webpack-plugin": "2.1.1"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"devDependencies": {
"@sindresorhus/slugify": "0.9.1",
"eslint": "5.16.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.0.1",
"eslint-plugin-react": "7.12.4",
"gatsby-plugin-eslint": "2.0.4",
"husky": "1.3.1",
"lint-staged": "8.1.5",
"prettier": "1.16.4",
"remark-cli": "^6.0.1",
"remark-preset-lint-recommended": "^3.0.2",
"turndown": "5.0.3",
"xml2js": "0.4.19"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}