-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.62 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
48
49
50
51
52
53
{
"name": "babel-typescript-eslint-prettier-jest-starter",
"version": "1.0.0",
"description": "A starter repo for a new babel, typescript, eslint, prettier, jest project",
"main": "src/index.ts",
"repository": "https://github.com/jmjpro/babel-typescript-eslint-prettier-jest-starter",
"author": "Joshua Jacobson <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-typescript": "^7.7.4",
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^10.0.0-beta.8",
"prettier": "^1.19.1",
"typescript": "^3.7.3"
},
"scripts": {
"lint": "eslint ./src/*.*",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"test": "jest",
"build": "babel src --out-dir build --extensions '.ts,.tsx,.js,.jsx'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/*.{js,jsx,ts,tsx}": [
"eslint",
"jest --bail --findRelatedTests",
"babel --out-dir build"
]
}
}