summaryrefslogtreecommitdiff
path: root/examples/with-tailwindcss/package.json
blob: 1882c56512e16b77284c6c7c261c8ab7b47d546c (plain) (blame)
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
{
  "name": "@example/with-tailwindcss",
  "version": "0.0.1",
  "private": true,
  "description": "Astro has native TailwindCSS support out-of-the-box. This template demonstrates how to use Tailwind to style your Astro project",
  "keywords": ["kitchen-sink","template","astro"],
  "repository": {
    "directory": "/examples/with-tailwindcss",
    "type": "github",
    "url": "https://github.com/snowpackjs/astro/tree/main"
  },
  "scripts": {
    "dev": "astro dev",
    "start": "astro dev",
    "build": "astro build",
    "preview": "astro preview"
  },
  "devDependencies": {
    "tailwindcss": "^2.1.2",
    "astro": "^0.20.4"
  },
  "snowpack": {
    "workspaceRoot": "../.."
  }
}