forked from microrealestate/microrealestate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.68 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
59
60
61
62
63
{
"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/*"
],
"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"
},
"lint-staged": {
"*.{js,ts,tsx, jsx}": [
"eslint --quiet --fix"
],
"*.{json,md,html,js,jsx,ts,tsx}": [
"prettier --write"
]
},
"devDependencies": {
"eslint": "8.36.0",
"eslint-config-next": "13.4.4",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-standard": "5.0.0",
"prettier": "2.8.4"
},
"dependencies": {
"husky": "7.0.4",
"lint-staged": "12.3.4"
},
"packageManager": "[email protected]"
}