-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 2.88 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "freshjuice-hubspot-theme",
"version": "2.0.0",
"description": "Hubspot CMS theme built with TailwindCSS, AlpineJS, and more.",
"main": "index.js",
"scripts": {
"clean": "rimraf './_temp' './_dist' && mkdir './_temp' './_dist'",
"fetch:hubspot": "hs fetch --overwrite /FreshJuice ./theme && ./scripts/post-fetch.sh",
"upload:hubspot": "hs upload ./theme /FreshJuice",
"watch:hubspot": "hs watch ./theme /FreshJuice",
"watch:tailwind": "npx tailwindcss --postcss -i ./source/css/tailwind.css -o ./theme/css/tailwind.css --watch",
"build:tailwind": "npx tailwindcss --postcss -i ./source/css/tailwind.css -o ./theme/css/tailwind.css",
"watch:js": "esbuild ./source/js/main.js --outfile=./theme/js/main.js --bundle --watch",
"build:js": "esbuild ./source/js/main.js --outfile=./theme/js/main.js --bundle",
"build:zip": "./scripts/build-zip.sh",
"version:patch": "./scripts/bump-theme-version.sh patch",
"version:minor": "./scripts/bump-theme-version.sh minor",
"version:major": "./scripts/bump-theme-version.sh major",
"start": "npm-run-all --parallel watch:*",
"build": "npm-run-all --serial clean build:js build:tailwind build:zip",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/freshjuice-dev/freshjuice-hubspot-theme.git"
},
"keywords": [
"hubspot",
"theme",
"cms",
"hubspot-cms",
"alpinejs",
"tailwindcss",
"boilerplate"
],
"author": {
"name": "Alex Zappa",
"email": "alex@zappa.dev",
"url": "https://alex.zappa.dev/"
},
"contributors": [
{
"name": "Alex Zappa",
"email": "alex@zappa.dev",
"url": "https://alex.zappa.dev/"
},
{
"name": "Aleksandr Zapparov",
"email": "alexander@zapparov.dev",
"url": "https://zapparov.dev/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/freshjuice-dev/freshjuice-hubspot-theme/issues"
},
"homepage": "https://github.com/freshjuice-dev/freshjuice-hubspot-theme#readme",
"devDependencies": {
"@alpinejs/collapse": "^3.14.1",
"@alpinejs/focus": "^3.14.1",
"@alpinejs/intersect": "^3.14.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@xpd/tailwind-3dtransforms": "^1.0.3",
"alpinejs": "^3.14.1",
"autoprefixer": "^10.4.20",
"esbuild": "^0.23.1",
"flying-pages-module": "^2.1.4",
"husky": "^9.1.6",
"lite-youtube-embed": "^0.3.3",
"node-html-to-image": "^5.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-discard-comments": "^7.0.3",
"postcss-easy-import": "^4.0.0",
"postcss-merge-rules": "^7.0.4",
"postcss-replace": "^2.0.1",
"rimraf": "^6.0.1",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.12",
"tailwindcss-safe-area": "^0.6.0"
}
}