-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
{
"name": "personal-website",
"description": "My personal site build using Gatsby",
"scripts": {
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .js,.jsx .",
"lint-fix": "eslint --ext .js,.jsx . --fix",
"lint-staged": "lint-staged"
},
"dependencies": {
"classnames": "^2.2.6",
"gatsby": "^2.24.62",
"gatsby-plugin-feed": "^2.13.1",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sharp": "^2.14.1",
"gatsby-plugin-typography": "^2.5.10",
"gatsby-remark-autolink-headers": "^2.3.11",
"gatsby-remark-images": "^4.1.0",
"gatsby-remark-katex": "^3.3.11",
"gatsby-remark-prismjs": "^3.5.10",
"gatsby-source-filesystem": "^2.3.30",
"gatsby-transformer-json": "^2.4.11",
"gatsby-transformer-remark": "^3.1.0",
"katex": "^0.12.0",
"prismjs": "^1.21.0",
"react": "^17.0.2",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-icons": "^3.10.0",
"react-typography": "^0.16.19",
"typography": "^0.16.19",
"typography-theme-de-young": "^0.16.19"
},
"lint-staged": {
"*.js": "eslint",
"*.jsx": "eslint"
},
"pre-commit": "lint-staged",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react-hooks": "^4.1.2",
"lint-staged": "^10.5.4",
"pre-commit": "^1.2.2"
}
}