-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 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
{
"name": "nikkhan.com",
"private": true,
"description": "The code for Nick's personal website",
"version": "0.1.0",
"author": "Nick S. Plekhanov <nick.plekhanov@gmail.com> (https://nikkhan.com)",
"repository": {
"type": "git",
"url": "https://github.com/nicksp/nikkhan.com"
},
"bugs": {
"url": "https://github.com/nicksp/nikkhan.com/issues"
},
"keywords": [
"gatsby",
"personal",
"portfolio",
"blog"
],
"license": "MIT",
"homepage": "https://github.com/nicksp/nikkhan.com#readme",
"scripts": {
"start": "npm run develop",
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"src/**/*.{js,jsx,json,yml,yaml,ts,tsx,md,mdx}\"",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing \""
},
"lint-staged": {
"*.{js,tsx,md,mdx}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@mdx-js/mdx": "^1.5.8",
"@mdx-js/react": "^1.5.8",
"gatsby": "^2.20.22",
"gatsby-image": "^2.3.2",
"gatsby-plugin-emotion": "^4.2.1",
"gatsby-plugin-feed": "^2.4.1",
"gatsby-plugin-google-analytics": "^2.2.2",
"gatsby-plugin-manifest": "^2.3.3",
"gatsby-plugin-mdx": "^1.1.7",
"gatsby-plugin-offline": "^3.1.2",
"gatsby-plugin-react-helmet": "^3.2.2",
"gatsby-plugin-sharp": "^2.5.4",
"gatsby-plugin-typography": "^2.4.1",
"gatsby-remark-copy-linked-files": "^2.2.1",
"gatsby-remark-embedder": "^2.0.0",
"gatsby-remark-images": "^3.2.2",
"gatsby-remark-prismjs": "^3.4.1",
"gatsby-remark-responsive-iframe": "^2.3.1",
"gatsby-remark-smartypants": "^2.2.1",
"gatsby-source-filesystem": "^2.2.2",
"gatsby-transformer-remark": "^2.7.1",
"gatsby-transformer-sharp": "^2.4.4",
"hyvor-talk-react": "^1.0.1",
"prism-themes": "^1.4.0",
"prismjs": "^1.20.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "6.0.0",
"react-typography": "^0.16.19",
"typeface-oswald": "^1.1.4",
"typeface-pt-sans": "^0.0.72",
"typography": "^0.16.19",
"typography-theme-stern-grove": "^0.16.19"
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4"
}
}