forked from maisieccino/omni-dash
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 778 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 778 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
{
"scripts": {
"postinstall": "cd client && yarn install",
"lint": "cd client && yarn run lint",
"lint:force": "cd client && yarn run lint:force",
"lint:staged": "lint-staged",
"format": "cd client && yarn run format",
"precommit": "(cd client && yarn run precommit) && yarn run lint:staged",
"build:test": "cd client && yarn run build:test",
"build:development": "cd client && yarn run build:development",
"build:production": "cd client && yarn run build:production"
},
"name": "hatch-site",
"private": true,
"dependencies": {},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"prettier": "^1.5.3"
},
"lint-staged": {
"*.{js,jsx}": ["prettier --write --trailing-comma all", "git add"]
}
}