forked from rstropek/CargoIntro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 806 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
{
"name": "cargointro",
"version": "1.0.0",
"description": "Slides and samples for *Cargo Introduction* session",
"main": "index.js",
"scripts": {
"clean": "node ./util/clean.js",
"build": "node ./util/build.js",
"watch-build": "watch \"npm run build\" slides util --interval=1",
"watch-start": "live-server --port=8080 --quiet dist",
"start": "npm-run-all -p watch-*"
},
"author": "Rainer Stropek",
"license": "MIT",
"dependencies": {
"reveal.js": "^4.1.0"
},
"devDependencies": {
"esbuild": "^0.11.15",
"fs-extra": "^9.1.0",
"lec": "^1.0.1",
"line-ending-corrector": "^1.0.1",
"live-server": "^1.2.1",
"md5-file": "^5.0.0",
"npm-run-all": "^4.1.5",
"recursive-copy": "^2.0.11",
"watch": "^1.0.2"
},
"type": "module"
}