-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.91 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.91 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "github_explorer_react",
"version": "1.0.0",
"description": "Project ReactJs",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"serve": "serve -s build",
"build:local": "react-scripts build",
"build:acceptance": "REACT_APP_ENV=acceptance yarn run build",
"build:production": "REACT_APP_ENV=production yarn run build",
"build:deploy:acceptance": "yarn build:acceptance && firebase deploy --only hosting:hml",
"build:deploy:production": "yarn build:production && firebase deploy --only hosting:prd",
"test": "react-scripts test --env jest-environment-jsdom-fourteen --watchAll=false --silent",
"jestrunner": "yarn react-scripts test --watchAll=false --env=jsdom",
"test:coverage": "react-scripts test --coverage --watchAll false --env jest-environment-jsdom-fourteen",
"test:staged": "npm test -- --findRelatedTests",
"test:ci": "yarn test --passWithNoTests --silent --noStackTrace --runInBand",
"eject": "react-scripts eject",
"code:check": "yarn code:lint; yarn code:format --check",
"code:clean": "yarn code:lint --fix; yarn code:format --write",
"code:lint": "eslint --ext .js,.jsx,.ts,.tsx \"src/\"",
"code:format": "prettier './src/**/**.{js,jsx,ts,tsx}'",
"code:check:rules": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"postinstall": "husky install; chmod ug+x .husky/*; npm run prepare",
"prepare": "is-ci || husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest",
"^.+\\.(js|jsx)$": "babel-jest"
},
"collectCoverageFrom": [
"src/**/*.tsx"
],
"transformIgnorePatterns": [
"/node_modules/(?!@hookform/*).+\\.[t|j]sx?$"
]
},
"dependencies": {
"@hookform/resolvers": "^2.9.6",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^27.0.1",
"@types/react": "^16.9.53",
"axios": "^1.1.3",
"pullstate": "^1.24.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.1.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"sass": "^1.55.0",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4",
"webpack": "4.44.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-flow": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^14.14.35",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-icons": "^3.0.0",
"@types/react-router-dom": "^5.1.6",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^6.0.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-location-mock": "^1.0.9",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"ts-jest": "^26.5.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"baseUrl": "./node_modules/@types",
"typeRoots": [
"types"
],
"author": "Tiago Mota",
"license": "ISC"
}