-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.07 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.07 KB
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
{
"name": "framework-monorepo",
"private": true,
"packageManager": "pnpm@9.0.0",
"type": "module",
"scripts": {
"dev": "turbo run dev",
"start": "node server.ts start",
"build": "turbo run build",
"bundle": "turbo run bundle",
"clean": "turbo run clean",
"typecheck": "turbo run typecheck",
"test": "vitest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"setup": "bash scripts/setup.sh || powershell -File scripts/setup.ps1",
"setup:unix": "bash scripts/setup.sh",
"setup:windows": "powershell -ExecutionPolicy Bypass -File scripts/setup.ps1",
"dev:unix": "bash scripts/dev.sh",
"dev:windows": "powershell -ExecutionPolicy Bypass -File scripts/dev.ps1",
"build:unix": "bash scripts/build.sh",
"build:windows": "powershell -ExecutionPolicy Bypass -File scripts/build.ps1",
"prepare": "husky"
},
"dependencies": {
"@types/glob": "^9.0.0",
"@vue/compiler-sfc": "^3.4.0",
"esbuild": "^0.27.3",
"glob": "^13.0.3",
"html-minifier-terser": "^7.2.0",
"mongodb": "^7.1.0",
"mysql2": "^3.17.1",
"pg": "^8.18.0",
"preact": "^10.28.3",
"preact-render-to-string": "^6.5.13",
"sass": "^1.97.3",
"sirv": "^3.0.1",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"svelte": "^5.51.1",
"vite": "^7.3.1"
},
"devDependencies": {
"@commitlint/cz-commitlint": "^20.4.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.2.3",
"@typescript/native-preview": "7.0.0-dev.20260304.1",
"@vitest/ui": "^2.1.8",
"commitizen": "^4.3.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^10.0.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lerna": "^9.0.4",
"prettier": "^3.8.1",
"turbo": "^2.8.7",
"typescript": "^5.7.2",
"typescript-eslint": "^8.55.0",
"vitepress": "2.0.0-alpha.16",
"vitest": "^2.1.8"
},
"workspaces": [
"packages/*",
"example/*",
"site/**",
"jenpack/**",
"bench/**",
"preactsc/**",
"docs/**",
"my-app/**"
]
}