forked from microrealestate/microrealestate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "microrealestate",
"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/microrealestate/microrealestate.git"
},
"keywords": [
"property management",
"real-estate",
"rents",
"tenants",
"landlord",
"open-source"
],
"author": "Camel Aissani",
"license": "MIT",
"bugs": {
"url": "https://github.com/microrealestate/microrealestate/issues"
},
"homepage": "https://github.com/microrealestate/microrealestate#readme",
"workspaces": [
"cli",
"e2e",
"services/*",
"webapps/*",
"types"
],
"scripts": {
"e2e:ci": "yarn workspace @microrealestate/e2e run cypress:ci",
"e2e:run": "yarn workspace @microrealestate/e2e run cypress:run",
"e2e:open": "yarn workspace @microrealestate/e2e run cypress:open",
"format": "yarn workspaces foreach run format",
"lint": "yarn workspaces foreach 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"
},
"lint-staged": {
"*.{js,ts,tsx, jsx}": [
"eslint --quiet --fix"
],
"*.{json,md,html,js,jsx,ts,tsx}": [
"prettier --write"
]
},
"devDependencies": {
"cross-env": "7.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"lint-staged": "15.2.0",
"prettier": "3.1.1"
},
"packageManager": "yarn@3.3.0"
}