forked from AppliedEnergistics/appliedenergistics.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.31 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.31 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
{
"name": "ae2-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"dependencies": {
"@docsearch/react": "^3.0.0-alpha.41",
"@mdi/js": "^6.3.95",
"@mdi/react": "^1.5.0",
"@mdx-js/loader": "^2.1.1",
"@mdx-js/react": "^1.6.22",
"@octokit/rest": "^18.12.0",
"@tippyjs/react": "^4.2.5",
"@types/mdx-js__react": "^1.5.4",
"adm-zip": "^0.5.9",
"bulma": "^0.9.3",
"next": "^12.1.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"remark-gfm": "^3.0.1",
"remark-slug": "^7.0.1"
},
"devDependencies": {
"@next/mdx": "^11.1.2",
"@types/glob": "^7.1.4",
"@types/react": "17.0.27",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"glob": "^7.2.0",
"gray-matter": "^4.0.3",
"image-size": "^1.0.0",
"next-mdx-remote": "^4.0.3",
"prettier": "2.4.1",
"sass": "^1.42.1",
"typescript": "4.6.2",
"unist-util-visit": "^4.1.0",
"val-loader": "^4.0.0"
},
"prettier": {
"overrides": [
{
"files": [
"*.md"
],
"options": {
"parser": "mdx"
}
}
]
}
}