-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.12 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "css2tw",
"private": true,
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"format": "./scripts/format.sh",
"format:check": "./scripts/format-check.sh",
"root:format": "prettier --write ./*.* ./.github ./.vscode",
"root:format:check": "prettier --check ./*.* ./.github ./.vscode",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"types": "turbo types",
"release:dry": "turbo --filter @titanom/css2tailwind release:dry",
"release:ci": "turbo --filter @titanom/css2tailwind release:ci",
"docs:dev": "turbo --filter @css2tw/docs dev",
"docs:build": "turbo --filter @css2tw/docs build",
"docs:preview": "turbo --filter @css2tw/docs preview"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@titanom/eslint-config": "1.2.0",
"@titanom/prettier-config": "2.0.0",
"@titanom/tsconfig": "0.2.0",
"eslint": "8.57.0",
"eslint-plugin-tailwindcss": "3.14.3",
"prettier": "3.2.5",
"turbo": "1.12.4",
"typescript": "5.3.3"
}
}