-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
46
47
{
"name": "raspi-cast",
"private": true,
"author": {
"name": "Charles Jacquin",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/charjac/raspi-cast/issues"
},
"homepage": "https://github.com/charjac/raspi-cast",
"workspaces": [
"packages/*"
],
"scripts": {
"install": "lerna bootstrap --use-workspaces",
"build": "lerna run build -- stream",
"lint": "lerna run lint --stream",
"dev": "lerna run dev --stream"
},
"devDependencies": {
"@types/node": "^13.13.5",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"husky": "^4.2.5",
"lerna": "^3.20.2",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"shx": "^0.3.2",
"typescript": "^3.8.3"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}