-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 KB
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
{
"name": "gatsby-starter-minimal-ts",
"version": "1.0.0",
"private": true,
"description": "A Gatsby starter written in TypeScript with no plugins and a single welcome page.",
"author": "Jude Agboola",
"keywords": [
"gatsby"
],
"scripts": {
"dev": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"deploy": "gatsby clean && gatsby build --prefix-paths && gh-pages -d public",
"typecheck": "tsc --noEmit"
},
"license": "UNLICENSED",
"dependencies": {
"@deckdeckgo/highlight-code": "^3.6.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"gatsby": "^5.12.4",
"gatsby-plugin-sharp": "^5.12.3",
"gatsby-plugin-sitemap": "^6.12.3",
"gatsby-remark-images": "^7.12.3",
"gatsby-remark-katex": "^7.12.0",
"gatsby-remark-mermaid": "^5.0.0",
"gatsby-remark-prismjs": "^7.13.1",
"gatsby-source-filesystem": "^5.12.1",
"gatsby-transformer-remark": "^6.13.1",
"katex": "^0.13.24",
"mermaid": "^11.9.0",
"playwright": "^1.54.2",
"prismjs": "^1.29.0",
"re-resizable": "^6.9.11",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rehype-mermaid": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@types/react": "^18.2.35",
"@types/react-dom": "^18.2.14",
"gh-pages": "^6.0.0",
"typescript": "^5.1.6"
}
}