forked from openmev/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 801 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 801 Bytes
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
{
"name": "@openmev/docs",
"version": "0.2.0",
"description": "documentation webapp",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=development npx next",
"start": "npx next start",
"build": "NODE_ENV=production npx next build",
"fmt": "npx prettier --config .prettierrc.json --write ."
},
"license": "MIT",
"dependencies": {
"@next/mdx": "^11.1.2",
"next": "^11.0.1",
"next-themes": "^0.0.15",
"nextra": "^1.1.0",
"nextra-theme-docs": "^1.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rehype-katex": "^6.0.1",
"remark-math": "^5.1.0"
},
"devDependencies": {
"@types/node": "^14",
"@types/react": "^17.0.20",
"eslint-config-next": "11.1.2",
"eslint-plugin-mdx": "^1.15.0",
"prettier": "^2.4.0"
}
}