-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.76 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.76 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
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
{
"name": "learn-web-development",
"private": true,
"description": "Simon Temmerman learn web dev repo",
"version": "0.0.1",
"author": "Simon Temmerman",
"dependencies": {
"@codemirror/autocomplete": "6.9.1",
"@codesandbox/sandpack-react": "2.8.0",
"@codesandbox/sandpack-themes": "2.0.21",
"@floating-ui/react": "^0.26.0",
"alea": "1.0.1",
"firebase": "10.4.0",
"gatsby": "5.12.5",
"gatsby-image": "3.11.0",
"gatsby-plugin-local-search": "^2.0.1",
"gatsby-plugin-manifest": "5.12.0",
"gatsby-plugin-sass": "6.12.0",
"gatsby-plugin-sharp": "5.12.0",
"gatsby-plugin-typography": "5.12.0",
"gatsby-remark-autolink-headers": "6.12.0",
"gatsby-remark-copy-linked-files": "6.12.0",
"gatsby-remark-images": "7.12.0",
"gatsby-remark-responsive-iframe": "6.12.0",
"gatsby-remark-shiki-twoslash": "3.0.38",
"gatsby-remark-smartypants": "6.12.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-remark": "6.12.0",
"lodash": "4.17.21",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-typography": "0.16.23",
"react-use-flexsearch": "^0.1.1",
"typeface-merriweather": "1.1.13",
"typeface-montserrat": "1.1.13",
"typography": "0.16.24",
"typography-theme-wordpress-2016": "0.16.19",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@types/jest": "29.5.5",
"@types/lodash": "4.14.199",
"@types/prettier": "^3.0.0",
"@types/react": "18.2.25",
"@types/react-dom": "18.2.10",
"@types/react-test-renderer": "18.0.3",
"@types/sharp": "0.32.0",
"@types/typography": "0.16.5",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"babel-jest": "29.7.0",
"babel-preset-gatsby": "3.12.0",
"eslint": "8.50.0",
"eslint-plugin-react": "7.33.2",
"gatsby-remark-emojis": "0.4.3",
"identity-obj-proxy": "3.0.0",
"jest": "29.7.0",
"js-yaml": "4.1.0",
"markdownlint": "0.31.1",
"markdownlint-cli": "0.37.0",
"prettier": "3.0.3",
"react-test-renderer": "18.2.0",
"sass": "1.68.0",
"typescript": "5.2.2"
},
"homepage": "",
"keywords": [
"gatsby"
],
"main": "n/a",
"scripts": {
"build": "npm run clean && gatsby build",
"build-prod": "yarn build --prefix-paths",
"dev": "npm run clean && gatsby develop --verbose",
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json,md}\"",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "yarn lint:ts && yarn lint:md",
"lint:md": "yarn markdownlint -c .markdownlint.jsonc content",
"lint:ts": "eslint . --ext ts,js,tsx,jsx",
"test": "jest",
"typecheck": "tsc -P . --noEmit"
},
"volta": {
"node": "14.16.0",
"yarn": "1.22.10"
}
}