-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.26 KB
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": "zyhou",
"private": true,
"description": "Maxime Richard personal site",
"version": "0.1.0",
"author": "Maxime Richard <richard.maxime9@gmail.com>",
"dependencies": {
"@mdx-js/mdx": "^1.6.5",
"@mdx-js/react": "^1.6.5",
"@tailwindcss/typography": "^0.2.0",
"gatsby": "^2.21.0",
"gatsby-image": "^2.4.0",
"gatsby-plugin-catch-links": "^2.3.5",
"gatsby-plugin-manifest": "^2.4.0",
"gatsby-plugin-mdx": "^1.2.14",
"gatsby-plugin-offline": "^3.2.17",
"gatsby-plugin-postcss": "^2.3.3",
"gatsby-plugin-react-helmet": "^3.3.0",
"gatsby-plugin-robots-txt": "^1.6.10",
"gatsby-plugin-sharp": "^2.6.0",
"gatsby-plugin-sitemap": "^2.4.4",
"gatsby-remark-autolink-headers": "^2.3.5",
"gatsby-remark-copy-linked-files": "^2.3.5",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.3.10",
"gatsby-source-filesystem": "^2.3.0",
"gatsby-transformer-remark": "^2.8.15",
"gatsby-transformer-sharp": "^2.5.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.0.0"
},
"devDependencies": {
"cssnano": "^4.1.10",
"eslint": "^7.26.0",
"eslint-config-zyhou": "0.0.15",
"eslint-plugin-jest": "24.5.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.3.0",
"tailwindcss": "^1.4.6"
},
"keywords": [
"zyhou",
"gatsby",
"tailwindcss"
],
"license": "MIT",
"scripts": {
"develop": "gatsby develop -o",
"start": "npm run develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint .",
"format": "prettier --write --check \"**/*.{js,json,md,mdx}\""
},
"repository": {
"type": "git",
"url": "https://github.com/zyhou/zyhou"
},
"bugs": {
"url": "https://github.com/zyhou/zyhou/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint",
"*.{js,json,md,mdx}": "prettier --write"
}
}