-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 865 Bytes
/
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
{
"name": "monorepo",
"version": "1.0.0",
"main": "index.js",
"private": true,
"repository": "https://github.com/hernanif1/monorepo-web.git",
"author": "Hernani Fernandes <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "yarn customer:lint && yarn planner:lint && yarn shared:lint",
"customer:lint": "eslint --fix --ext .jsx,.js,.tsx,.ts ./customer",
"planner:lint": "eslint --fix --ext .jsx,.js,.tsx,.ts ./planner",
"shared:lint": "eslint --fix --ext .jsx,.js,.tsx,.ts ./shared",
"prepare": "husky install"
},
"workspaces": [
"customer",
"planner",
"shared/*"
],
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^6.0.0"
}
}