generated from mattwaler/tea-stack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.69 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
{
"name": "tea-stack",
"version": "1.0.0",
"description": "A starter template for the TEA stack.",
"main": "index.js",
"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 --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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattwaler/tea-stack.git"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"htmlWhitespaceSensitivity": "ignore"
},
"keywords": [
"eleventy",
"tailwind",
"alpine"
],
"author": "Matt Waler",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattwaler/tea-stack/issues"
},
"homepage": "https://github.com/mattwaler/tea-stack#readme",
"dependencies": {
"alpinejs": "^3.1.0",
"htmx.org": "^1.4.1",
"lazysizes": "^5.3.0"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.4.1",
"cross-env": "^6.0.3",
"esbuild": "^0.12.9",
"npm-run-all": "^4.1.5",
"postcss-import": "^14.0.0",
"tailwindcss": "^2.2.2",
"tailwindcss-debug-screens": "^1.1.0"
}
}