-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.14 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
99
100
101
{
"name": "jskhamkham",
"version": "0.0.0-development",
"description": "เว็บไซต์อย่างเป็นทางการของ JS ขำๆ",
"keywords": [
"blog",
"gatsby"
],
"homepage": "https://github.com/niawjunior/jskhamkham",
"bugs": {
"url": "https://github.com/niawjunior/jskhamkham/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/niawjunior/jskhamkham.git"
},
"license": "MIT",
"author": "JS ขำๆ <jskhamkham@gmail.com>",
"main": "n/a",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"clean": "gatsby clean",
"format": "prettier --write 'src/**/*.js' 'data/siteConfig.js' 'gatsby-*.js' 'scripts/*.js'",
"generatePostPreviewImages": "./scripts/generatePostPreviewImages.js",
"serve": "gatsby serve",
"lint": "eslint --ext .js,.jsx --ignore-pattern public .",
"production": "npm run clean && npm run build && npm run serve",
"semantic-release": "semantic-release",
"start": "gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.app/unit-testing\""
},
"bin": {
"generatePostPreviewImages": "./scripts/generatePostPreviewImages.js"
},
"dependencies": {
"@mdx-js/mdx": "^2.1.5",
"@mdx-js/react": "^1.5.1",
"babel-plugin-styled-components": "^1.10.6",
"disqus-react": "^1.0.7",
"gatsby": "^2.15.0",
"gatsby-image": "^2.2.27",
"gatsby-plugin-advanced-sitemap": "^2.1.0",
"gatsby-plugin-compile-es6-packages": "^2.1.0",
"gatsby-plugin-dark-mode": "1.1.2",
"gatsby-plugin-google-analytics": "^2.1.21",
"gatsby-plugin-manifest": "^4.24.0",
"gatsby-plugin-mdx": "^4.3.0",
"gatsby-plugin-nprogress": "2.1.19",
"gatsby-plugin-offline": "^3.0.14",
"gatsby-plugin-page-creator": "^2.1.25",
"gatsby-plugin-purgecss": "4.0.1",
"gatsby-plugin-react-helmet": "^3.1.11",
"gatsby-plugin-sharp": "^4.24.0",
"gatsby-plugin-sitemap": "2.2.27",
"gatsby-plugin-styled-components": "^3.1.17",
"gatsby-remark-autolink-headers": "^2.1.14",
"gatsby-remark-copy-linked-files": "^2.1.26",
"gatsby-remark-images": "^6.24.0",
"gatsby-remark-prismjs": "^3.3.30",
"gatsby-remark-responsive-iframe": "^2.2.23",
"gatsby-remark-smartypants": "^2.1.12",
"gatsby-source-filesystem": "^4.24.0",
"gatsby-transformer-remark": "^2.6.28",
"gatsby-transformer-sharp": "^4.24.0",
"lodash": "^4.17.15",
"prismjs": "^1.19.0",
"react": "^16.10.0",
"react-dom": "^16.10.0",
"react-helmet": "^5.2.1",
"react-switch": "5.0.1",
"styled-components": "^5.0.0",
"tailwind.macro": "^0.5.10"
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-plugin-react": "^7.14.2",
"husky": "^4.3.8",
"lint-staged": "10.0.3",
"prettier": "^1.18.2",
"puppeteer": "^1.17.0",
"semantic-release": "^19.0.5",
"tailwindcss": "^3.1.8",
"yaml": "^1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run format"
]
},
"peerDependencies": {
"gatsby": "^2.15.0",
"react": "^16.10.0",
"react-dom": "^16.10.0"
}
}