-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 728 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 728 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
{
"name": "react-query-presentation",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"md-to-html": "markdown-to-html -s notes.md -o notes.html",
"open:demo": "open http://localhost:5173/",
"open:presentation": "open http://localhost:8080",
"open:notes": "open -a safari http://localhost:8080/notes.html",
"server": "http-server -o",
"start": "run-p md-to-html open:* server"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"reveal.js": "^5.1.0"
},
"devDependencies": {
"http-server": "^14.1.1",
"markdown-to-html-cli": "^5.0.3",
"npm-run-all": "^4.1.5"
}
}