-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.74 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
85
86
87
88
89
90
{
"name": "ha4219.github.io",
"version": "1.0.0",
"private": true,
"description": "ha4219.github.io",
"author": "ha4219",
"keywords": [
"gatsby"
],
"scripts": {
"dev": "gatsby develop",
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build && cp CNAME ./public",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"prepare": "husky install",
"test": "yarn jest --watch",
"deploy": "yarn build && yarn gh-pages -d public"
},
"dependencies": {
"@mdx-js/react": "^2.2.1",
"gatsby": "^5.3.2",
"gatsby-plugin-google-analytics": "^5.3.0",
"gatsby-plugin-image": "^3.3.2",
"gatsby-plugin-manifest": "^5.3.1",
"gatsby-plugin-mdx": "^5.3.1",
"gatsby-plugin-react-helmet": "^6.8.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sharp": "^5.3.2",
"gatsby-plugin-sitemap": "^6.3.1",
"gatsby-remark-images": "^7.3.1",
"gatsby-remark-katex": "^7.3.0",
"gatsby-source-filesystem": "^5.3.1",
"gatsby-transformer-sharp": "^5.3.1",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-three-fiber": "^6.0.13",
"reading-time": "^1.5.0",
"three": "^0.151.2"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-typescript": "^7.18.6",
"@tailwindcss/line-clamp": "^0.4.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.10",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-helmet": "^6.1.6",
"@types/react-test-renderer": "^18.0.0",
"@types/three": "^0.150.1",
"autoprefixer": "^10.4.13",
"babel-jest": "^29.3.1",
"babel-loader": "^8.3.0",
"babel-preset-gatsby": "^3.3.1",
"concurrently": "^7.6.0",
"eslint": "^8.31.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"gatsby-plugin-postcss": "^6.3.0",
"gatsby-plugin-tsconfig-paths": "^1.0.5",
"gh-pages": "^4.0.0",
"husky": "^8.0.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.1.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}