forked from adelineliou/VAD-VAR-Workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.5 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
{
"name": "vad-var-site",
"version": "1.0.0",
"private": true,
"description": "Static site to host VEST workshops",
"author": "jbukuts",
"keywords": [
"gatsby"
],
"scripts": {
"dev": "gatsby develop",
"build": "NODE_OPTIONS=--max-old-space-size=8192 gatsby build",
"build:local": "./node_modules/.bin/cross-env LOCAL_IMAGES=true gatsby build",
"serve": "gatsby serve -H 0.0.0.0",
"start": "npm run clean && npm run build && npm run serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext js,md,mdx,ts,tsx,mjs",
"lint:fix": "eslint . --ext js,md,mdx,ts,tsx,mjs --fix"
},
"dependencies": {
"@carbon/react": "^1.25.0",
"@hbsnow/rehype-sectionize": "^1.0.7",
"@loadable/component": "^5.15.3",
"@mdx-js/react": "^2.3.0",
"@reach/router": "^1.3.4",
"@types/marked": "^4.3.0",
"@xenova/transformers": "^2.7.0",
"classnames": "^2.3.2",
"gatsby": "^5.7.0",
"gatsby-plugin-image": "^3.8.0",
"gatsby-plugin-mdx": "^5.12.1",
"gatsby-plugin-module-resolver": "^1.0.3",
"gatsby-plugin-sass": "^6.7.0",
"gatsby-plugin-sharp": "^5.7.0",
"gatsby-remark-copy-linked-files": "^6.8.0",
"gatsby-remark-images": "^7.8.0",
"gatsby-source-filesystem": "^5.7.0",
"gatsby-transformer-sharp": "^5.7.0",
"gpt-tokenizer": "^2.1.2",
"highlight.js": "^11.8.0",
"i18next": "^22.4.14",
"marked": "^5.0.2",
"mdast-util-from-markdown": "^1.3.0",
"mdast-util-mdx": "^2.0.1",
"micromark-extension-mdxjs": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.2.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-highlight": "^6.0.0",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"sass": "^1.59.3",
"shiki": "^0.14.1",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@types/carbon-components-react": "^7.55.2",
"@types/loadable__component": "^5.13.6",
"@types/node": "^18.15.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/sass": "^1.45.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}