-
-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
45 lines (45 loc) · 1.06 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
39
40
41
42
43
44
45
{
"name": "react-guitar-monorepo",
"private": true,
"author": "Alejandro Tardín <[email protected]>",
"homepage": "https://react-guitar.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/4lejandrito/react-guitar.git"
},
"workspaces": [
"packages/*",
"screenshots",
"site",
"storybook"
],
"devDependencies": {
"eslint": "^8.21.0",
"eslint-utils": "^3.0.0",
"husky": ">=8.0.1",
"lerna": "^5.3.0",
"lint-staged": ">=13.0.3",
"prettier": "^2.7.1",
"tsdx": "^0.14.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.{js,ts,tsx,md,json,html,css,scss,webmanifest}": "prettier --write"
},
"scripts": {
"build": "lerna run build",
"shoot": "lerna run shoot",
"start": "lerna run --parallel start",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"lint": "tsdx lint .",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}