-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
37 lines (37 loc) · 1.35 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
{
"name": "vredeburg",
"version": "2.0.0",
"description": "A simple starter project to create a blog using Eleventy and Tailwind CSS",
"scripts": {
"start": "npm run serve",
"watch": "concurrently -c auto npm:css:watch npm:11ty:watch",
"serve": "concurrently -c auto npm:css:watch npm:11ty:serve",
"build": "npm run css:build && npm run 11ty:build",
"debug": "cross-env DEBUG=Eleventy* npm run build",
"11ty:watch": "cross-env NODE_ENV=development eleventy --watch --incremental",
"11ty:serve": "cross-env NODE_ENV=development eleventy --serve --incremental",
"11ty:build": "cross-env NODE_ENV=production eleventy",
"css:watch": "tailwindcss -i src/assets/css/main.css -o dist/assets/css/main.css -w",
"css:build": "tailwindcss -i src/assets/css/main.css -o dist/assets/css/main.css -m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daflh/vredeburg.git"
},
"author": "Dafiul Haq",
"license": "MIT",
"bugs": {
"url": "https://github.com/daflh/vredeburg/issues"
},
"homepage": "https://github.com/daflh/vredeburg#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@tailwindcss/typography": "^0.5.9",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.7",
"html-minifier": "^4.0.0",
"tailwindcss": "^3.2.4",
"terser": "^5.16.1"
}
}