-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.57 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
41
42
43
44
45
46
{
"name": "hugo-alpine-bookshop-template",
"version": "1.0.0",
"description": "Starter template for hugo, alpine, bookshop",
"main": "index.js",
"scripts": {
"start": "run-p javascript hugo-server-watch javascript",
"dev": "run-p javascript-dev hugo-server bookshop",
"init": "npx @bookshop/init@latest",
"hugo-server-watch": "hugo server -D --watch",
"hugo-server": "hugo server -D",
"build": "hugo --source ./ --destination public --baseURL /",
"javascript-dev": "esbuild assets/js/index.js --bundle --outfile=assets/js/build.js --watch",
"javascript": "esbuild assets/js/index.js --bundle --outfile=assets/js/build.js",
"bookshop": "npx @bookshop/browser@latest",
"fix-hugo": "hugo mod clean",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCannon/hugo-alpine-bookshop-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CloudCannon/hugo-alpine-bookshop-template/issues"
},
"homepage": "https://github.com/CloudCannon/hugo-alpine-bookshop-template#readme",
"dependencies": {
"@alpinejs/intersect": "^3.9.6",
"@bookshop/browser": "3.0.1",
"@bookshop/generate": "3.0.1",
"@bookshop/hugo-engine": "3.0.1",
"alpinejs": "^3.9.5",
"autoprefixer": "^10.4.4",
"esbuild": "^0.14.29",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"tailwindcss": "^3.0.23"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.2"
}
}