-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.02 KB
/
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
30
31
32
33
34
35
36
37
38
{
"name": "@xh/package-template",
"version": "3.0.3",
"description": "A stub JS package to demo code sharing across Hoist client apps.",
"repository": "github:xh/package-template",
"homepage": "https://xh.io",
"bugs": "https://github.com/xh/package-template/issues",
"author": "Extremely Heavy Industries, Inc.",
"license": "Apache-2.0",
"scripts": {
"lint": "yarn lint:js && yarn lint:styles",
"lint:js": "eslint --ext .js,.jsx .",
"lint:styles": "stylelint \"**/*.s?(a|c)ss\""
},
"lint-staged": {
"*.{js,jsx}": "eslint",
"*.s?(a|c)ss": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"peerDependencies": {
"@xh/hoist": ">=66.0.0 || >=67.0.0-SNAPSHOT",
"react": "~18.2.0",
"react-dom": "~18.2.0"
},
"devDependencies": {
"@xh/hoist-dev-utils": ">=9.x",
"husky": ">=9.x",
"lint-staged": ">=15.x",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"stylelint": ">=16.x",
"stylelint-config-standard-scss": ">=13.x"
}
}