-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 851 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 851 Bytes
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
{
"name": "billy",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"start": "run-p -cln backend-auth backend-api frontend",
"backend-auth": "yarn workspace backend auth",
"backend-api": "yarn workspace backend api",
"frontend": "yarn workspace frontend start",
"lint:all": "npx eslint --fix .",
"style:all": "npx prettier --write ."
},
"dependencies": {
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-react": "^7.22.0",
"husky": "^5.0.9",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": "eslint --fix",
"*.{js,css,html,md,json,jsx}": "prettier --write"
}
}