-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
42 lines (42 loc) · 994 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
36
37
38
39
40
41
42
{
"name": "root",
"private": true,
"keywords": [
"api",
"api client",
"npm package",
"lighthouse",
"REST",
"server",
"typescript"
],
"scripts": {
"bootstrap": "npm run lerna -- bootstrap --hoist",
"lerna": "lerna",
"lint": "eslint ./packages/**/src --ext .ts,.tsx --cache --fix --no-error-on-unmatched-pattern",
"prettier": "prettier --single-quote --write './packages/**/*.{ts,tsx}'",
"test": "lerna run test --stream"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./packages/**/*.{ts,tsx}": [
"npm run prettier",
"npm run lint"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^23.20.0",
"husky": "^4.2.5",
"lerna": "^3.18.2",
"lint-staged": "^10.4.2",
"prettier": "^2.0.5"
}
}