-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.49 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
{
"name": "monorepo-rust-typescript",
"version": "0.0.0",
"private": true,
"author": "vadxq",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.27.8",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@types/node": "^22.7.2",
"dprint": "^0.47.2",
"eslint": "^8.57.1",
"eslint-config-custom": "workspace:*",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"turbo": "^2.1.2",
"typescript": "^5.6.2"
},
"scripts": {
"feapp": "pnpm --filter=./apps/feapp",
"feapp:dev": "turbo run dev --scope=@monorepo/feapp",
"beapp:dev": "cargo watch -x run -p beapp -w ./apps/beapp",
"build": "turbo run build --parallel",
"dev": "turbo run dev --parallel --no-cache",
"format": "pnpm dprint fmt",
"lint": "turbo run lint --parallel",
"prepare": "husky install",
"changeset": "changeset",
"changeset:version": "changeset version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vadxq/monorepo-rust-typescript.git"
},
"keywords": [
"monorepo",
"rust",
"typescript",
"solid"
],
"bugs": {
"url": "https://github.com/vadxq/monorepo-rust-typescript/issues"
},
"homepage": "https://github.com/vadxq/monorepo-rust-typescript#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]"
}