-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 933 Bytes
/
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
{
"name": "rerobots-docs",
"version": "0.1.0",
"scripts": {
"dev": "./tools/collect-wtypes.py && next dev",
"build": "./tools/collect-wtypes.py && next build && next export",
"start": "next start",
"lint": "./tools/collect-wtypes.py && next lint",
"clean": "rm -r -f pages/workspaces public/workspaces/figures out"
},
"repository": "https://github.com/rerobots/docs",
"author": "Scott C. Livingston <[email protected]>",
"license": "Apache-2.0",
"private": true,
"dependencies": {
"@markdoc/markdoc": "^0.1.12",
"@markdoc/next.js": "^0.1.10",
"next": "^12.3.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sanitize.css": "13.0.0"
},
"devDependencies": {
"@types/node": "18.8.0",
"@types/prismjs": "^1.26.0",
"@types/react": "18.0.21",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"typescript": "4.8.4"
}
}