forked from PoweredLocal/typescript-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "@poweredlocal/typescript-starter",
"private": true,
"scripts": {
"format": "prettier --loglevel warn --write \"**/*.{t,j}s\"",
"check": "lerna run check && eslint . --ext .js,.ts",
"test": "lerna run test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^10.12.18",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "7.2.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^8.0.2",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^3.0.0",
"jest": "^26.1.0",
"lerna": "^3.20.2",
"lint-staged": "^9.2.0",
"prettier": "^1.19.1",
"ts-jest": "^26.1.1",
"typescript": "^3.2.4"
}
}