-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
35 lines (35 loc) · 916 Bytes
/
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
{
"workspaces": [
"packages/*",
"demos/*"
],
"private": true,
"packageManager": "yarn@4.6.0",
"description": "monorepo for react-use-audio-player",
"author": "E-Kuerschner",
"repository": {
"type": "git",
"url": "https://github.com/E-Kuerschner/useAudioPlayer"
},
"scripts": {
"lint-all": "yarn workspaces foreach --all run lint",
"version": "yarn workspace react-use-audio-player version",
"release": "yarn workspace react-use-audio-player release"
},
"devDependencies": {
"@yarnpkg/types": "^4.0.0",
"husky": "^3.1.0",
"prettier": "^3.4.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn constraints && yarn lint-all"
}
},
"prettier": {
"tabWidth": 4,
"printWidth": 80,
"semi": false,
"trailingComma": "none"
}
}