forked from cuesoftinc/expendit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 808 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 808 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
{
"devDependencies": {
"husky": "^9.0.10",
"npm-run-all": "^4.1.5"
},
"name": "expendit",
"description": "## About",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install || true",
"lint": "npm-run-all lint:App lint:Home",
"lint:App": "cd App && npm run lint:staged",
"lint:Home": "cd Home && npm run lint:staged",
"pre-push": "npm-run-all pre-push:App pre-push:Home",
"pre-push:App": "cd App && npm run pre-push",
"pre-push:Home": "cd Home && npm run pre-push"
},
"lint-staged": {
"App/src/**/*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"src/**/*.{js,jsx,ts,tsx,css,scss,html,md}": "prettier --write"
},
"keywords": [],
"author": "",
"license": "ISC"
}