-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 756 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "blog",
"version": "1.0.0",
"scripts": {
"serve": "concurrently --kill-others \"tailwindcss -i ./assets/css/tail-in.css -o ./assets/css/tail-out.css --watch\" \"hugo server -D\"",
"lint": "eslint . --ext .js,.html",
"lint:fix": "eslint . --fix --ext .js,.html",
"image-min": "node scripts/image-min.js"
},
"repository": "https://github.com/wagslane/blog",
"author": "wagslane <lane.c.wagner@gmail.com>",
"devDependencies": {
"@tailwindcss/forms": "^0.5.2",
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"sharp": "^0.30.7",
"tailwindcss": "^3.1.8"
}
}