-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 2.02 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "tablex",
"version": "0.0.0",
"license": "MIT",
"author": {
"name": "Kareem Ebrahim"
},
"repository": {
"type": "git",
"url": "https://github.com/kareemmahlees/tablex"
},
"private": true,
"workspaces": [
"apps/core",
"apps/web",
"packages/**"
],
"scripts": {
"tauri:dev": "bunx tauri dev",
"tauri:debug": "bunx tauri build --debug",
"tauri:build": "bunx tauri build",
"tauri:info": "bunx tauri info",
"astro:dev": "bun --filter @tablex/web dev",
"astro:check": "bun --filter @tablex/web check",
"astro:build": "bun --filter @tablex/web build",
"astro:preview": "bun --filter @tablex/web preview",
"ts:lint": "bun astro:check && bun --filter @tablex/core lint && bun --filter @tablex/web lint",
"rust:lint": "cargo clippy",
"lint": "bun ts:lint && bun rust:lint",
"format:check": "bunx prettier . --check",
"format:fix": "bunx prettier . --write",
"release": "release-it"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@release-it/bumper": "^6.0.1",
"@release-it/conventional-changelog": "^8.0.2",
"@types/bun": "^1.1.9",
"@types/node": "^20.16.5",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"husky": "^8.0.3",
"postcss": "^8.4.47",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "^0.6.6",
"release-it": "^17.6.0",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2"
},
"packageManager": "bun@1.1.26",
"dependencies": {
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.292.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7"
}
}