-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.66 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
{
"name": "lyra",
"version": "0.0.1",
"description": "Lyra is a modern content management system for the web.",
"author": {
"name": "Yuniel Acosta Pérez",
"email": "[email protected]",
"url": "https://www.yunielacosta.com"
},
"license": "MIT",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/dallay/lyra.git",
"branch": "main"
},
"bugs": {
"url": "https://github.com/dallay/lyra/issues"
},
"homepage": "lyra-nwhm.onrender.com",
"scripts": {
"update-deps": "pnpm update -i -r --latest",
"preinstall": "npx only-allow pnpm",
"setup": "pnpm install && pnpm exec playwright install",
"dev": "pnpm -C apps/frontend run dev",
"build": "pnpm -C apps/frontend run build",
"clean": "pnpm -C apps/frontend run clean",
"preview": "pnpm -C apps/frontend run preview",
"check": "pnpm -C apps/frontend run lint && pnpm -C apps/frontend run check",
"format": "pnpm -C apps/frontend run format",
"lint": "pnpm -C apps/frontend run lint",
"test": "pnpm -C apps/frontend run test",
"test:watch": "pnpm -C apps/frontend run test:watch"
},
"workspaces": [
"apps/frontend/*"
],
"devDependencies": {
"@lyra/scripts": "workspace:*",
"@saithodev/semantic-release-backmerge": "^4.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.9.0",
"gradle-semantic-release-plugin": "1.10.1",
"npm-run-all2": "^7.0.1",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0"
},
"engines": {
"node": ">=18.14.1",
"pnpm": ">=8.6.12"
},
"packageManager": "[email protected]"
}