-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "tea-stack",
"version": "1.0.0",
"description": "A starter template for the TEA stack.",
"main": "index.js",
"scripts": {
"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 --platform=browser --target=es2017",
"clean": "rm -rf dist",
"dev:11ty": "eleventy --serve --quiet --port=$PORT",
"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 --platform=browser --target=es2017",
"build": "cross-env NODE_ENV=production npm-run-all clean -p 'build:*'",
"dev": "cross-env NODE_ENV=development npm-run-all -p 'dev:*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattwaler/tea-stack.git"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"htmlWhitespaceSensitivity": "ignore",
"overrides": [
{
"files": "*.njk",
"options": {
"parser": "html",
"tabWidth": 2
}
}
]
},
"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/intersect": "^3.2.2",
"@supabase/supabase-js": "^1.35.3",
"@vercel/analytics": "^0.1.6",
"alpinejs": "^3.7.0",
"argon2": "^0.28.7",
"critical": "^4.0.1",
"date-fns": "^2.27.0",
"formidable": "^2.0.1",
"gulp": "^4.0.2",
"gulp-terser": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"lda": "^0.2.0",
"netlify-cli": "^6.9.6",
"node-fetch-commonjs": "^3.1.1",
"stripe": "^8.194.0",
"web-vitals": "^3.1.0"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/line-clamp": "^0.3.0",
"@tailwindcss/typography": "^0.5.0",
"cross-env": "^6.0.3",
"esbuild": "^0.12.9",
"gulp-brotli": "^3.0.0",
"npm-run-all2": "^6.0.4",
"postcss-import": "^14.0.0",
"tailwindcss": "3.0.13",
"tailwindcss-debug-screens": "^1.1.0"
}
}