-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.3 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
{
"name": "rsscloud-monorepo",
"version": "0.0.0",
"private": true,
"description": "rssCloud monorepo",
"scripts": {
"start": "pnpm --filter @rsscloud/server run dev",
"client": "pnpm --filter @rsscloud/client-app run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write .",
"test": "pnpm --filter @rsscloud/e2e run test:e2e",
"test:unit": "turbo run test",
"test:core": "turbo run test --filter=@rsscloud/core",
"clean": "turbo run clean",
"prepare": "husky"
},
"packageManager": "pnpm@10.11.0",
"pnpm": {
"overrides": {
"serialize-javascript": ">=7.0.5",
"qs": ">=6.15.2",
"vite": ">=6.4.2",
"esbuild": ">=0.28.1",
"diff": ">=8.0.3"
},
"onlyBuiltDependencies": [
"esbuild"
]
},
"repository": {
"type": "git",
"url": "https://github.com/rsscloud/rsscloud-server.git"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@eslint/js": "^10.0.1",
"husky": "^9.1.7",
"prettier": "^3.8.3",
"turbo": "^2.9.14"
}
}