-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.99 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "clean-react",
"version": "1.0.0",
"license": "MIT",
"repository": "git@github.com:gabrielsanttana/clean-react.git",
"author": "Gabriel Santana <gabriel.gsantana7@gmail.com>",
"main": "index.js",
"scripts": {
"test": "jest --passWithNoTests",
"test:ci": "yarn test --coverage",
"test:staged": "yarn test --findRelatedTests .src/",
"test:watch": "yarn test --watch"
},
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/faker": "^5.5.5",
"@types/jest": "^26.0.23",
"@types/node": "^15.6.0",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard-with-typescript": "11",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jest-dom": "^3.9.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-testing-library": "^4.6.0",
"faker": "^5.5.3",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0",
"prettier-plugin-organize-imports": "^2.1.0",
"prettier-plugin-package": "^1.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"jest": {
"coverageThreshold": {
"global": {
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{scss,css}": [
"prettier --write --parser=css"
],
"*.{json}": [
"prettier --write --parser=json"
],
"*.{md}": [
"prettier --write --parser=markdown"
]
}
}