-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
36 lines (36 loc) · 1.12 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
{
"name": "tapp-dev-environment",
"description": "This environment includes dependencies to run code-formatting checks",
"license": "MIT",
"dependencies": {
"@babel/eslint-parser": "^7.16.3",
"@prettier/plugin-ruby": "0.20.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-react": "^1.1.7",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^3.10.2",
"prettier": "^2.4.1",
"prettier-check": "^2.0.0",
"prettier-diff": "^0.0.16"
},
"prettier": {
"tabWidth": 4,
"semi": true,
"endOfLine": "lf"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}