forked from webiny/docs.webiny.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 688 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 688 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
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/webiny/webiny-js.git"
},
"devDependencies": {
"all-contributors-cli": "^6.13.0",
"husky": "^4.3.0",
"lint-staged": "^7.2.2",
"prettier": "^1.19.1"
},
"scripts": {
"lint-staged": "lint-staged",
"prettier": "prettier \"website/**/*.js\" --config .prettierrc.js",
"prettier:check": "yarn prettier --check",
"prettier:fix": "yarn prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.js": [
"prettier --check"
]
},
"resolutions": {
"**/terser-webpack-plugin": "1.4.3"
}
}