forked from jacksingleton/hacker-slides
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "reveal.js-online",
"version": "1.0.4",
"description": "A simple app that combines Ace Editor and RevealJS. You can write markdown on the left, and preview your presentation on the right.",
"keywords": [
"reveal.js",
"reveal-md",
"beautiful presentations",
"presentation editor",
"markdown"
],
"main": "app.js",
"bin": "./bin/revealjs-start-pres.sh",
"scripts": {
"start": "node ./app.js",
"start-dev": "DEBUG=app node ./app.js",
"build-docker": "docker build -t reveal.js-online .",
"test": "docker-compose up"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makusatori/hacker-slides.git"
},
"author": "Jack Singleton",
"contributors": [
"Mariusz Lichota",
"makusatori",
"jeau",
"Thierry Pasquier",
"Asheesh Laroia",
"Drew Fisher",
"okapi6",
"Corey Ford"
],
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"debug": "^4.1.1",
"express": "^4.17.1"
},
"devDependencies": {
"@types/express": "^4.17.2"
}
}