-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.78 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
{
"name": "andrewm-codes-website",
"description": "Andrew Mason's Website",
"homepage": "https://andrewm.codes",
"version": "3.4.0",
"author": {
"name": "Andrew Mason",
"url": "https://andrewm.codes"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/andrewmcodes/andrewm-codes-website.git"
},
"bugs": {
"url": "https://github.com/andrewmcodes/www-andrewmcodes/issues"
},
"keywords": [
"alpine.js",
"bridgetown",
"snowpack",
"tailwind-css",
"vercel"
],
"devDependencies": {
"@andrewmcodes/prettier-config": "^1.0.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.2",
"autoprefixer": "^10.4.8",
"esbuild": "^0.14.49",
"glob": "^8.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.14",
"postcss-import": "^14.1.0",
"postcss-load-config": "^3.1.4",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.7",
"tailwindcss-debug-screens": "^2.2.1"
},
"scripts": {
"esbuild": "node esbuild.config.js --minify",
"esbuild-dev": "node esbuild.config.js --watch",
"prepare": "husky install",
"start": "bin/bridgetown start",
"build": "BRIDGETOWN_ENV=production bin/bridgetown deploy",
"format": "yarn format:ruby && yarn format:prettier",
"format:prettier": "prettier --write .",
"format:ruby": "bundle exec standardrb"
},
"private": true,
"license": "MIT",
"browserslist": [
"defaults"
],
"lint-staged": {
"*.{js,md,yml,json}": "yarn format:prettier",
"*.rb": "yarn format:ruby"
},
"dependencies": {
"@hotwired/turbo": "^7.1.0"
}
}