-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "solid-ui",
"version": "0.0.1",
"private": true,
"type": "module",
"license": "MIT",
"author": {
"name": "Stefan E-K",
"url": "https://twitter.com/stefan_e_k"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"lint": "turbo lint",
"build": "turbo build",
"build:docs": "turbo --filter=docs build",
"build:cli": "turbo --filter=solidui-cli build",
"build:registry": "pnpm --filter=docs build:registry",
"release": "changeset version",
"pub:beta": "cd packages/cli && pnpm pub:beta",
"pub:release": "cd packages/cli && pnpm pub:release"
},
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@typescript-eslint/parser": "^7.17.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.56.0",
"eslint-plugin-solid": "^0.14.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.6",
"tailwindcss-animate": "^1.0.7",
"turbo": "^1.13.0"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.17.0",
"valibot": "^0.36.0"
}
}