aboutsummaryrefslogtreecommitdiffstats
path: root/tooling/tailwind/package.json
blob: 3c59c14a5fdebdf31401be7f6d0764711684f81a (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
  "name": "@hoarder/tailwind-config",
  "version": "0.1.0",
  "private": true,
  "type": "module",
  "exports": {
    "./native": "./native.ts",
    "./web": "./web.ts",
    "./globals.css": "./globals.css"
  },
  "license": "MIT",
  "scripts": {
    "clean": "rm -rf .turbo node_modules",
    "format": "prettier --check . --ignore-path ../../.gitignore",
    "lint": "eslint .",
    "typecheck": "tsc --noEmit"
  },
  "dependencies": {
    "@tailwindcss/typography": "^0.5.10",
    "nativewind": "^4.1.23",
    "postcss": "^8.4.35",
    "tailwindcss": "^3.4.1",
    "tailwindcss-animate": "^1.0.7"
  },
  "devDependencies": {
    "@hoarder/eslint-config": "workspace:^0.2.0",
    "@hoarder/prettier-config": "workspace:^0.1.0",
    "@hoarder/tsconfig": "workspace:^0.1.0",
    "eslint": "^8.57.0",
    "prettier": "^3.4.2",
    "typescript": "^5.7.3"
  },
  "eslintConfig": {
    "root": true,
    "extends": [
      "@hoarder/eslint-config/base"
    ]
  },
  "prettier": "@hoarder/prettier-config"
}