-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.57 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
{
"name": "@runnablejs/monorepo",
"version": "0.6.0",
"private": true,
"packageManager": "pnpm@10.24.0",
"description": "Build internal apps with ease",
"license": "MIT",
"author": "Kinetic",
"homepage": "https://getrunnable.com",
"repository": {
"type": "git",
"url": "https://github.com/kineticio/runnable.git"
},
"bugs": {
"url": "https://github.com/kineticio/runnable/issues"
},
"keywords": [
"internal-tools",
"admin",
"workflows",
"nest",
"express",
"hono"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"ci": "pnpm install && pnpm typecheck && pnpm lint && pnpm build && pnpm test",
"build": "FORCE_COLOR=1 turbo run build",
"dev": "FORCE_COLOR=1 turbo run dev",
"test": "FORCE_COLOR=1 turbo run test",
"typecheck": " FORCE_COLOR=1 turbo run typecheck",
"docs:build": "vitepress build docs",
"docs:dev": "vitepress dev docs",
"docs:serve": "vitepress serve docs",
"format": "oxfmt .",
"lint": "oxlint . --fix",
"release": "bumpp package.json packages/*/package.json --commit --push --tag"
},
"devDependencies": {
"bumpp": "^9.11.1",
"cross-env": "^7.0.3",
"lint-staged": "^13.3.0",
"oxfmt": "^0.16.0",
"oxlint": "^1.31.0",
"oxlint-tsgolint": "^0.8.3",
"simple-git-hooks": "^2.13.1",
"turbo": "^2.6.2",
"typescript": "^5.9.3",
"vitepress": "^1.6.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"pnpm": {
"overrides": {
"vite": "8.0.0-beta.0"
}
},
"lint-staged": {
"*.{js,ts,tsx}": []
}
}