-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.68 KB
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
45
46
47
48
49
50
51
52
53
{
"name": "ignite-the-holidays",
"version": "3.0.0",
"description": "Ignite the Holidays presentation using reveal.js",
"private": true,
"scripts": {
"prebuild": "node scripts/build-index.js",
"build": "npm run prebuild && npm run copy",
"copy": "cpx '{slides/**,js/**,resources/**,index.html,node_modules/reveal.js/dist/**,node_modules/reveal.js/plugin/**}' dist",
"dev": "npm run prebuild && npm-run-all2 --parallel serve watch",
"serve": "serve . -l 9000",
"watch": "chokidar 'slides/**/*.md' 'templates/*.html' 'slides/list.json' -c 'npm run prebuild'",
"lint": "eslint 'scripts/**/*.js'",
"lint:fix": "eslint 'scripts/**/*.js' --fix",
"format": "prettier --write '**/*.{js,json,yml,yaml}'",
"format:check": "prettier --check '**/*.{js,json,yml,yaml}'",
"test": "npm run format:check && npm run lint && npm run test:build",
"test:build": "node scripts/build-index.js && node scripts/test-build.js",
"clean": "rm -rf dist index.html",
"prepare": "husky",
"start": "npm run dev"
},
"type": "module",
"engines": {
"node": ">=24.0.0",
"npm": ">=10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"chokidar-cli": "^3.0.0",
"cpx2": "^7.0.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"serve": "^14.2.1"
},
"dependencies": {
"reveal.js": "^5.1.0"
},
"keywords": [
"presentation",
"reveal.js",
"ignite"
],
"repository": {
"type": "git",
"url": "https://github.com/orlandodevs/ignite-the-holidays.git"
}
}