-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.13 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": "hugo-bookshop-starter",
"private": true,
"description": "A starter template for Hugo with Bookshop",
"scripts": {
"start": "run-p dev:css dev:hugo",
"build": "run-p build:*",
"dev:css": "postcss ./assets/css/styles.css -o ./static/css/styles.css --watch",
"build:css": "postcss ./assets/css/styles.css -o ./static/css/styles.css",
"dev:hugo": "hugo server",
"build:hugo": "hugo --destination public",
"new": "npx @bookshop/init --component"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/hugo-bookshop-starter.git"
},
"author": "CloudCannon",
"license": "MIT",
"bugs": {
"url": "https://github.com/CloudCannon/hugo-bookshop-starter/issues"
},
"homepage": "https://github.com/CloudCannon/hugo-bookshop-starter#readme",
"devDependencies": {
"@bookshop/browser": "3.2.1",
"@bookshop/generate": "3.2.1",
"@bookshop/hugo-engine": "3.2.1",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.4.1"
},
"dependencies": {
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"postcss-cli": "^10.1.0",
"postcss-import": "^16.0.1"
}
}