-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
93 lines (93 loc) · 2.45 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@wener/wode",
"version": "1.0.0",
"type": "module",
"description": "Wener Node Monorepo",
"repository": {
"type": "git",
"url": "git+https://github.com/wenerme/wode.git"
},
"homepage": "https://github.com/wenerme/wode#readme",
"bugs": {
"url": "https://github.com/wenerme/wode/issues"
},
"author": "wener",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"components/*",
"packages/*"
],
"engines": {
"node": ">=18",
"npm": ">=9.0.0",
"pnpm": ">=8.0.0"
},
"keywords": [],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@bufbuild/protoc-gen-es": "^2.2.3",
"@connectrpc/protoc-gen-connect-query": "^2.0.1",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@swc/cli": "^0.5.2",
"@swc/core": "^1.10.4",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.5",
"@types/pg": "^8.11.10",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"better-sqlite3": "^11.7.2",
"bun-types": "^1.1.42",
"cssnano": "^7.0.6",
"daisyui": "^4.12.23",
"esbuild": "^0.24.2",
"globby": "^14.0.2",
"jsdom": "^25.0.1",
"million": "^3.1.11",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7",
"ts-add-js-extension": "^1.6.5",
"ts-node": "11.0.0-beta.1",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"packageManager": "[email protected]"
}