-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.8 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.8 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
{
"name": "root",
"version": "1.1.0",
"private": true,
"repository": "git@github.com:mbret/oboku.git",
"author": "Maxime Bret <bret.maxime@gmail.com>",
"license": "MIT",
"engines": {
"node": "22.x"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"docker:dev": "docker compose -f docker-compose.dev.yml up -d --build",
"start": "lerna run start:dev --stream",
"start:lib": "lerna run start:dev --scope=@oboku/shared --scope=@oboku/synology",
"start:web": "lerna run start:dev --scope=@oboku/web",
"start:landing": "lerna run dev --scope=@oboku/landing",
"start:api": "lerna run start:dev --scope=@oboku/api",
"start:admin": "lerna run start --scope=@oboku/admin",
"build": "lerna run build",
"build:web": "lerna run build --scope=@oboku/web",
"build:api": "lerna run build --scope=@oboku/api",
"build:landing": "lerna run build --scope=@oboku/landing",
"test": "lerna run test",
"tsc": "lerna run tsc",
"format": "npx @biomejs/biome format --write .",
"lint": "npx @biomejs/biome check .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@rollup/plugin-replace": "^6.0.2",
"@types/node": "^22.14.1",
"husky": "^9.1.7",
"lerna": "^9.0.0",
"lint-staged": "^16.1.5",
"rollup": "^4.60.1",
"rollup-plugin-analyzer": "^4.0.0",
"typescript": "^5.9.2",
"unplugin-dts": "^1.0.0",
"vercel": "^50.25.6",
"vitest": "^4.0.8",
"rollup-plugin-node-externals": "^8.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.787.0",
"@aws-sdk/client-ssm": "^3.787.0",
"@emotion/cache": "^11.14.0",
"@microsoft/api-extractor": "^7.58.2"
},
"lint-staged": {
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true --write"
]
}
}