forked from trekhleb/trekhleb.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 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
76
77
78
79
80
{
"name": "trekhleb.github.io",
"version": "2.0.0",
"private": false,
"author": "Oleksii Trekhleb",
"homepage": "https://trekhleb.dev",
"license": "0BSD",
"scripts": {
"fetch_stars": "node ./src/scripts/fetchGitHubStars.js",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"type": "tsc",
"develop": "gatsby develop",
"develop-secure": "gatsby develop --https",
"develop-mobile": "gatsby develop --host 0.0.0.0",
"develop-mobile-secure": "gatsby develop --host 0.0.0.0 --https",
"prebuild": "npm run fetch_stars",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"predeploy": "npm run build",
"deploy": "gh-pages --dist ./public --branch public"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@reach/router": "^1.3.4",
"@react-icons/all-files": "^4.1.0",
"@tailwindcss/typography": "^0.4.0",
"@types/node": "^14.14.36",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@types/react-helmet": "^6.1.0",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.0.0",
"gatsby": "^3.1.2",
"gatsby-image": "^3.1.0",
"gatsby-plugin-codegen": "^1.2.14",
"gatsby-plugin-feed": "^3.1.0",
"gatsby-plugin-google-gtag": "^3.1.0",
"gatsby-plugin-mdx": "^2.1.0",
"gatsby-plugin-postcss": "^4.1.0",
"gatsby-plugin-react-helmet": "^4.1.0",
"gatsby-plugin-sharp": "^3.1.2",
"gatsby-remark-autolink-headers": "^3.1.0",
"gatsby-remark-copy-linked-files": "^3.1.0",
"gatsby-remark-images": "^4.1.1",
"gatsby-remark-images-zoom": "^1.1.0",
"gatsby-remark-prismjs": "^4.1.0",
"gatsby-source-filesystem": "^3.1.0",
"gatsby-transformer-sharp": "^3.1.0",
"gh-pages": "^3.1.0",
"node-fetch": "^2.6.1",
"postcss": "^8.2.8",
"prismjs": "^1.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"source-map-support": "^0.5.19",
"tailwindcss": "^2.0.4",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"resolutions": {
"graphql": "^15.4.0",
"graphql-compose": "^7.25.0",
"webpack": "^5.24.2"
},
"devDependencies": {},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0"
}
}