generated from tomreinert/minimal-11ty-tailwind-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.23 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
37
38
39
40
{
"name": "wortie",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf _site",
"serve:webpack": "webpack --mode development --watch",
"serve:eleventy": "cross-env ELEVENTY_ENV=development eleventy --serve",
"serve": "npm-run-all clean --parallel serve:*",
"build:webpack": "webpack --mode production",
"build:eleventy": "cross-env ELEVENTY_ENV=production npx eleventy",
"build": "cross-env NODE_ENV=production run-s clean build:*"
},
"keywords": [],
"author": "wortie",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@speedy-js/code-title": "^0.1.3",
"@tailwindcss/typography": "^0.5.9",
"@toycode/markdown-it-class": "^1.2.4",
"autoprefixer": "^10.4.7",
"axios": "^1.3.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"eleventy-plugin-time-to-read": "^1.3.0",
"markdown-it": "^13.0.1",
"markdown-it-emoji": "^2.0.2",
"mini-css-extract-plugin": "^0.11.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.14",
"postcss-loader": "^4.3.0",
"rimraf": "^3.0.2",
"tailwindcss": "^3.0.24",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2"
}
}