-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
54 lines (54 loc) · 1.37 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
{
"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 -p build:*",
"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"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"htmlWhitespaceSensitivity": "ignore"
},
"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.2",
"@tailwindcss/typography": "^0.5.4",
"autoprefixer": "^10.4.14",
"npm-run-all": "^4.1.5",
"postcss-import": "^16.0.0",
"tailwindcss": "^3.1.6",
"tailwindcss-debug-screens": "^2.2.1",
"twig": "^1.15.4",
"vite": "^6.0.9"
}
}