-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 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
{
"name": "@reineira-os/modules",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Plug-and-play application starters for ReineiraOS ventures",
"reineira": {
"platform": "0.1"
},
"scripts": {
"dev:backend": "pnpm --filter @reineira-os/modules-backend run dev",
"dev:app": "pnpm --filter @reineira-os/modules-app run dev",
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "eslint . && pnpm -r run typecheck",
"format": "prettier --write '**/*.{ts,tsx,js,jsx,json,md}'",
"format:check": "prettier --check '**/*.{ts,tsx,js,jsx,json,md}'"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/release-notes-generator": "^14.1.0",
"conventional-changelog-conventionalcommits": "^9.3.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.4.0",
"prettier": "^3.4.0",
"semantic-release": "^25.0.3",
"typescript-eslint": "^8.58.0"
},
"packageManager": "pnpm@10.30.3",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=10.0.0"
},
"license": "MIT",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}