-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 919 Bytes
/
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
{
"name": "static-starter",
"version": "1.0.1",
"description": "Simple Static HTML Site Example with TailwindCSS and AlpineJS. Ready for SEO Optimization and a Netlify Deployment",
"main": "index.html",
"scripts": {
"dev": "tailwindcss -i ./src/main.css -o ./dist/main.css --watch",
"build": "tailwindcss -i ./src/main.css -o ./dist/main.css --minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aidanweltner/static-starter.git"
},
"keywords": [
"html",
"tailwindcss"
],
"author": "Aidan Weltner",
"license": "GPL3",
"bugs": {
"url": "https://github.com/aidanweltner/static-starter/issues"
},
"homepage": "https://github.com/aidanweltner/static-starter#readme",
"devDependencies": {
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.10",
"tailwindcss": "^3.4.0"
}
}