-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 824 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 824 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
32
33
{
"name": "reveal-ts",
"version": "1.0.0",
"scripts": {
"slides:build": "node scripts/concat-slides.js",
"watch:slides": "chokidar 'src/slides/**/*.md' -c 'npm run slides:build'",
"vite": "vite",
"dev": "npm-run-all --parallel watch:slides vite",
"build": "npm run slides:build && vite build",
"preview": "vite preview",
"lint": "prettier . --write"
},
"dependencies": {
"fs": "^0.0.1-security",
"path": "^0.12.7",
"reveal.js": "^5.0.0"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.6.0",
"rollup-plugin-copy": "^3.5.0",
"typescript": "^5.0.0",
"vite": "^5.0.0"
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100,
"tabWidth": 2
}
}