-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.24 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.24 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
{
"name": "personal-website",
"private": true,
"description": "Welvin personal website",
"version": "0.1.0",
"author": "Welvin Bun <welvin07@gmail.com>",
"dependencies": {
"@chakra-ui/core": "^0.8.0",
"@deckdeckgo/highlight-code": "^1.1.4",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"emotion-theming": "^10.0.27",
"gatsby": "^2.30.1",
"gatsby-image": "^2.4.9",
"gatsby-plugin-chakra-ui": "^0.1.4",
"gatsby-plugin-google-analytics": "^2.3.13",
"gatsby-plugin-manifest": "^2.4.14",
"gatsby-plugin-mdx": "^1.2.34",
"gatsby-plugin-offline": "^3.2.13",
"gatsby-plugin-react-helmet": "^3.3.6",
"gatsby-plugin-sharp": "^2.6.14",
"gatsby-plugin-typescript": "^2.4.15",
"gatsby-plugin-typescript-checker": "^1.1.1",
"gatsby-remark-highlight-code": "^1.4.7",
"gatsby-remark-images": "^3.3.25",
"gatsby-remark-katex": "^3.3.11",
"gatsby-source-filesystem": "^2.3.14",
"gatsby-transformer-remark": "^2.8.29",
"gatsby-transformer-sharp": "^2.5.7",
"katex": "^0.12.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0"
},
"devDependencies": {
"@types/mdx-js__react": "^1.5.2",
"@types/react-helmet": "^6.1.0",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"typescript": "^3.9.7"
},
"keywords": [
"gatsby"
],
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"There is no test for now, might write later\" && exit 0",
"lint": "npm run format && eslint --ignore-path .gitignore . --ext ts --ext tsx --ext js --ext jsx",
"deploy": "gatsby build && gh-pages -d public -r https://$GITHUB_TOKEN@github.com/welvin21/personal_website"
},
"repository": {
"type": "git",
"url": "https://github.com/welvin21/personal_website"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"post-merge": "cd git-hooks && ./post-merge.sh"
}
}
}