-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
75 lines (75 loc) · 2.49 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
{
"name": "applyingml",
"private": true,
"description": "A site on applying machine learning",
"version": "0.1.0",
"homepage": "https://github.com/eugeneyan/applyingml",
"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 \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "gatsby build && gh-pages -d public"
},
"dependencies": {
"@emotion/react": "^11.4.0",
"@fontsource/merriweather": "^4.3.0",
"@fontsource/raleway": "^4.3.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"gatsby": "^3.4.1",
"gatsby-image": "^3.4.0",
"gatsby-plugin-catch-links": "^3.4.0",
"gatsby-plugin-emotion": "^6.4.0",
"gatsby-plugin-google-gtag": "^3.8.0",
"gatsby-plugin-manifest": "^3.4.0",
"gatsby-plugin-mdx": "^2.4.0",
"gatsby-plugin-react-helmet": "^4.8.0",
"gatsby-plugin-robots-txt": "^1.6.8",
"gatsby-plugin-sharp": "^3.4.2",
"gatsby-plugin-sitemap": "^3.3.0",
"gatsby-plugin-typography": "^3.4.0",
"gatsby-plugin-web-font-loader": "^1.0.4",
"gatsby-remark-autolink-headers": "^4.6.0",
"gatsby-remark-copy-linked-files": "^4.1.0",
"gatsby-remark-images": "^5.1.0",
"gatsby-remark-numbered-footnotes": "^1.0.1",
"gatsby-remark-reference-footnotes": "^0.0.4",
"gatsby-remark-social-cards": "^0.4.1",
"gatsby-source-filesystem": "^3.4.0",
"gatsby-transformer-sharp": "^3.4.0",
"gatsby-transformer-yaml": "^3.5.0",
"immer": ">=9.0.6",
"prism-react-renderer": "^1.2.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-github-btn": "^1.2.0",
"react-helmet": "^6.1.0",
"react-live": "^2.2.3",
"react-typography": "^0.16.19",
"remark-html-katex": "^3.0.0",
"remark-math": "^3.0.1",
"typography": "^0.16.19",
"typography-theme-kirkham": "^0.16.19"
},
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.1.0",
"prettier": "^2.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/eugeneyan/applyingml"
}
}