forked from mattwaler/mattwaler.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.46 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.46 KB
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
{
"name": "my-website",
"author": "Matt Waler",
"license": "UNLICENSED",
"scripts": {
"build": "cross-env NODE_ENV=production npm-run-all clean -p build:*",
"build:11ty": "eleventy --quiet",
"build:css": "tailwindcss -i src/_bundle/main.pcss -o dist/assets/main.bundle.css --minify --postcss",
"build:js": "esbuild src/_bundle/main.js --outfile=dist/assets/main.bundle.js --minify --bundle",
"clean": "rm -rf dist",
"dev": "cross-env NODE_ENV=development npm-run-all -p dev:*",
"dev:11ty": "eleventy --serve --quiet",
"dev:css": "tailwindcss -i src/_bundle/main.pcss -o dist/assets/main.bundle.css --watch --postcss",
"dev:js": "esbuild src/_bundle/main.js --outfile=dist/assets/main.bundle.js --bundle --watch"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"htmlWhitespaceSensitivity": "ignore"
},
"browserslist": "> 2%",
"dependencies": {
"alpinejs": "^3.1.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.4.1",
"autoprefixer": "^10.2.6",
"cross-env": "^6.0.3",
"date-fns": "^2.16.0",
"esbuild": "^0.12.9",
"markdown-it": "^11.0.0",
"markdown-it-container": "^3.0.0",
"npm-run-all": "^4.1.5",
"postcss-import": "^14.0.0",
"tailwindcss": "^2.2.4",
"tailwindcss-debug-screens": "^1.1.0"
}
}