-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.65 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "lotus",
"description": "GatsbyJS static blog template",
"version": "3.3.0",
"private": true,
"author": "ywbird <[email protected]> (https://ywbird.github.io)",
"license": "MIT",
"homepage": "https://ywbird.github.io/lotus-gatsby-theme",
"keywords": [
"gatsby",
"starter",
"typescript"
],
"scripts": {
"prestart": "gatsby clean",
"start": "gatsby develop",
"prebuild": "gatsby clean",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc --noEmit",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"test": "vitest",
"test:watch": "vitest watch",
"deploy": "gh-pages -d public",
"setting": "node ./setting/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@emotion/react": "11.10.5",
"@giscus/react": "2.2.3",
"@mdx-js/react": "v1",
"@theme-ui/mdx": "0.15.4",
"body-parser": "1.20.1",
"eslint-plugin-css-modules": "2.11.0",
"express": "4.18.2",
"gatsby": "5.0.1",
"gatsby-plugin-google-fonts": "1.0.1",
"gatsby-plugin-image": "3.0.0",
"gatsby-plugin-sass": "6.0.0",
"gatsby-plugin-sharp": "5.0.0",
"gatsby-plugin-sitemap": "6.3.1",
"gatsby-plugin-slug": "2.0.0",
"gatsby-plugin-theme-ui": "0.15.4",
"gatsby-remark-autolink-headers": "6.0.0",
"gatsby-remark-code-titles": "1.1.0",
"gatsby-remark-emojis": "0.4.3",
"gatsby-remark-external-links": "0.0.4",
"gatsby-remark-images": "7.0.0",
"gatsby-remark-responsive-iframe": "6.0.0",
"gatsby-remark-vscode": "3.3.1",
"gatsby-source-filesystem": "5.0.0",
"gatsby-transformer-remark": "6.0.0",
"gatsby-transformer-sharp": "5.0.0",
"gh-pages": "4.0.0",
"jetjet-theme": "JetJet13/jetjet-theme-vscode",
"material-theme": "Binaryify/OneDark-Pro",
"node-sass": "8.0.0",
"preact": "10.11.3",
"preact-render-to-string": "5.2.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"theme-ui": "0.15.4",
"tsconfig-paths-webpack-plugin": "4.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
"@iconify/react": "4.0.0",
"@testing-library/dom": "8.19.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/testing-library__jest-dom": "5.14.5",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"@vitejs/plugin-react": "2.2.0",
"babel-loader": "^8.3.0",
"babel-preset-gatsby": "3.0.0",
"c8": "7.12.0",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-n": "15.5.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"identity-obj-proxy": "3.0.0",
"jsdom": "20.0.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"typescript": "4.8.4",
"vite-tsconfig-paths": "3.5.2",
"vitest": "0.25.1"
}
}