forked from g1eny0ung/hugo-theme-dream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 798 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
{
"name": "hugo-theme-dream",
"version": "3.0.0",
"description": "A Hugo theme named Dream.",
"repository": "https://github.com/g1eny0ung/hugo-theme-dream.git",
"author": "Yue Yang <[email protected]> (https://g1en.site)",
"license": "MIT",
"private": true,
"scripts": {
"css": "tailwindcss -i ./src/input.css -o ./assets/css/output.css",
"js": "babel src --out-dir assets --presets=@babel/preset-env --no-comments",
"build": "npm run css && npm run js",
"watch": "conc \"npm:css -- -w\" \"npm:js -- -w\""
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@tailwindcss/typography": "^0.5.15",
"concurrently": "^9.1.2",
"daisyui": "^4.12.22",
"tailwindcss": "^3.4.17"
}
}