-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 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
44
45
{
"name": "tea-stack",
"version": "1.0.0",
"description": "A starter template for the TEA stack.",
"main": "index.js",
"type": "module",
"scripts": {
"build": "NODE_ENV=production npm-run-all clean build:vite build:11ty",
"build:11ty": "eleventy --quiet",
"build:vite": "vite build",
"clean": "rm -rf dist",
"dev": "NODE_ENV=development npm-run-all -p dev:*",
"dev:11ty": "eleventy --quiet --serve",
"dev:vite": "vite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattwaler/tea-stack.git"
},
"keywords": [
"tailwind",
"eleventy",
"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"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@factorial/eleventy-plugin-twig": "^0.2.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.6",
"npm-run-all": "^4.1.5",
"tailwindcss": "^4.0.0",
"twig": "^1.15.4",
"vite": "^7.2.7"
}
}