forked from presolved/eleventy-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 866 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 866 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
{
"name": "hello-eleventy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run dev:11ty\" \"npm run dev:css\"",
"build": "npm run build:11ty && npm run build:css",
"dev:11ty": "eleventy --serve",
"dev:css": "tailwindcss -i ./src/css/tailwind.css -o ./dist/css/tailwind.css --watch",
"build:11ty": "eleventy",
"build:css": "tailwindcss -i ./src/css/tailwind.css -o ./dist/css/tailwind.css --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.2.0",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.9",
"axios": "^1.2.6"
}
}