-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.9 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rentroo",
"version": "1.0.0-alpha.1",
"description": "The application which helps the landlords to manage their property rents.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/rentroo/rentroo.git"
},
"keywords": [
"property management",
"real-estate",
"rents",
"tenants",
"landlord",
"open-source"
],
"author": "Sensible Analytics",
"license": "MIT",
"bugs": {
"url": "https://github.com/rentroo/rentroo/issues"
},
"homepage": "https://github.com/rentroo/rentroo#readme",
"packageManager": "yarn@1.22.19",
"workspaces": [
"cli",
"e2e",
"services/*",
"webapps/*",
"types",
"desktop-app"
],
"scripts": {
"e2e:ci": "yarn workspace @rentroo/e2e run cypress:ci",
"e2e:run": "yarn workspace @rentroo/e2e run cypress:run",
"e2e:open": "yarn workspace @rentroo/e2e run cypress:open",
"format": "yarn workspaces foreach run format",
"lint": "yarn workspaces foreach -pv run lint",
"dev": "cross-env MRE_VERSION=dev node cli/src/index.js dev",
"mre": "cross-env MRE_VERSION=local node cli/src/index.js",
"build": "yarn run mre build",
"start": "yarn run mre start",
"stop": "yarn run mre stop",
"ci": "yarn run mre ci",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"eslint --quiet --fix",
"git add"
],
"*.{json,md,html,js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"cross-env": "7.0.3",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"prettier": "3.8.1"
},
"resolutions": {
"axios": "1.8.4",
"braces": "3.0.3",
"cross-spawn": "7.0.5",
"esbuild": "0.25.0",
"nanoid": "3.3.8",
"path-to-regexp": "0.1.12",
"tar-fs": "3.0.9",
"typescript": "5.5.4"
},
"engines": {
"node": "v20"
},
"packageManager": "yarn@3.3.0"
}