-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.65 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.65 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
123
124
125
126
127
128
{
"name": "codinglabs-typescript",
"version": "1.0.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^24.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/yup": "^0.26.30",
"axios": "^0.19.2",
"history": "^4.10.1",
"moment": "^2.24.0",
"polished": "^3.4.4",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hook-form": "^4.9.3",
"react-icons": "^3.9.0",
"react-maskinput": "^2.0.1",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.3.1",
"react-select": "^3.0.8",
"react-toastify": "^5.5.0",
"reactotron-react-js": "^3.3.7",
"reactotron-redux": "^3.1.2",
"reactotron-redux-saga": "^4.2.3",
"redux": "^4.0.5",
"redux-saga": "^1.1.3",
"reduxsauce": "^1.1.2",
"seamless-immutable": "^7.1.4",
"styled-components": "^5.0.1",
"typeface-fjalla-one": "^0.0.72",
"typeface-lato": "^0.0.75",
"typeface-montserrat": "^0.0.75",
"typesafe-actions": "^5.1.0",
"typescript": "~3.7.2",
"yup": "^0.28.1"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"lint": "lint-staged",
"coverage": "react-app-rewired test --coverage --watchAll=false",
"eject": "react-scripts eject"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.tsx": [
"eslint --fix"
]
},
"jest": {
"roots": [
"<rootDir>/__tests__/"
],
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setupTests.ts"
],
"testMatch": [
"**/*.test.tsx"
],
"moduleNameMapper": {
"^~/(.*)": "<rootDir>/src/$1",
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__tests__/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__tests__/__mocks__/styleMock.js"
},
"coverageDirectory": "__tests__/coverage"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/history": "^4.7.5",
"@types/react-modal": "^3.10.4",
"@types/react-redux": "^7.1.7",
"@types/react-router-dom": "^5.1.3",
"@types/react-select": "^3.0.10",
"@types/seamless-immutable": "^7.1.11",
"@types/styled-components": "^4.4.2",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-typescript": "^6.3.1",
"eslint-config-prettier": "^6.10.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.3",
"json-server": "^0.16.0",
"lint-staged": "^10.0.7",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"react-app-rewired": "^2.1.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}