-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (35 loc) · 1.02 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
{
"name": "reveal-eleventy-template",
"version": "1.0.0",
"description": "Template for creating presentations",
"scripts": {
"dev": "eleventy --serve --quiet",
"css": "tailwindcss -i ./src/tailwind.css -o ./src/style/style.css --watch ",
"start": "eleventy --serve --quiet",
"build": "NODE_ENV=production eleventy",
"tidy": "prettier ./src --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bullrich/reveal-eleventy-template.git"
},
"author": "Javier Bullrich <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bullrich/reveal-eleventy-template/issues"
},
"homepage": "https://github.com/Bullrich/reveal-eleventy-template#readme",
"dependencies": {
"reveal.js": "^4.6.1"
},
"main": ".eleventy.js",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"postcss": "^8.4.32",
"postcss-cli": "^11.0.0",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.6"
}
}