-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
77 lines (77 loc) · 2.51 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
{
"name": "aisummer-blog-template",
"private": true,
"description": "Blog template based on theaisummer.com",
"version": "1.0.0",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"type-check": "tsc"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.21",
"@mdx-js/react": "^1.6.21",
"@types/react-copy-to-clipboard": "^5.0.2",
"aos": "^2.3.4",
"classnames": "^2.2.6",
"flexsearch": "^0.6.32",
"gatsby": "^2.23.12",
"gatsby-image": "^2.4.21",
"gatsby-plugin-anchor-links": "^1.2.0",
"gatsby-plugin-breakpoints": "^1.3.2",
"gatsby-plugin-feed": "^2.13.0",
"gatsby-plugin-google-gtag": "^2.8.0",
"gatsby-plugin-local-search": "^2.0.0",
"gatsby-plugin-mdx": "^1.3.1",
"gatsby-plugin-react-helmet": "^3.3.14",
"gatsby-plugin-robots-txt": "^1.5.3",
"gatsby-plugin-sass": "^3.0.0",
"gatsby-plugin-sharp": "^2.7.1",
"gatsby-plugin-sitemap": "^2.11.0",
"gatsby-remark-autolink-headers": "^2.4.1",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^3.4.1",
"gatsby-remark-katex": "^3.3.14",
"gatsby-source-filesystem": "^2.4.2",
"gatsby-transformer-sharp": "^2.5.21",
"gatsby-transformer-yaml": "^2.9.0",
"katex": "^0.12.0",
"prism-react-renderer": "^1.1.1",
"prismjs": "^1.22.0",
"react": "^16.12.0",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^16.12.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.14.1",
"react-twitter-embed": "^3.0.3",
"react-use-flexsearch": "^0.1.1",
"remark-html-katex": "^3.0.0",
"remark-math": "^4.0.0",
"sass": "^1.35.1",
"typescript": "^4.0.5"
},
"devDependencies": {
"@types/aos": "^3.0.3",
"@types/classnames": "^2.2.11",
"@types/mdx-js__react": "^1.5.3",
"@types/node": "^14.14.6",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"gatsby-plugin-eslint": "^2.0.8",
"prettier": "2.0.5"
}
}