-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 966 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
{
"name": "playground-eleventy",
"version": "1.0.0",
"description": "Playground project to test and evaluate eleventy",
"main": "index.js",
"scripts": {
"tailwind:dev": "postcss src/styles/main.css -o _site/styles/main.css --watch",
"tailwind:prod": "NODE_ENV=production postcss src/styles/main.css -o _site/styles/main.css",
"build": "NODE_ENV=production eleventy --pathprefix 'playground-eleventy' && npm run tailwind:prod",
"serve": "eleventy --serve",
"start": "concurrently \"yarn run tailwind:dev\" \"yarn run serve\""
},
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.4.4",
"concurrently": "^7.0.0",
"lodash": "^4.17.21",
"markdown-it-attrs": "^4.1.3",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"tailwindcss": "^3.0.23"
}
}