-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 3.13 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
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
{
"name": "resumeboost-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@craco/craco": "^6.1.1",
"@emotion/react": "^11.1.5",
"@material-ui/core": "^4.11.3",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/user-event": "^12.1.10",
"@types/axios": "^0.14.0",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.7",
"@types/yup": "^0.29.11",
"@windmill/react-ui": "^0.5.1",
"axios": "^0.21.1",
"dayjs": "^1.10.4",
"formik": "^2.2.6",
"rc-slider": "^9.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-toast": "^1.0.2",
"react-pdf": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.3",
"react-spinners": "^0.10.6",
"typescript": "^4.1.2",
"web-vitals": "^1.0.1",
"yup": "^0.32.9"
},
"scripts": {
"start": "craco start",
"start:coverage": "craco -r @cypress/instrument-cra start",
"build": "craco build",
"test": "craco test",
"test:cov": "craco test --coverage --watchAll=false",
"test:debug": "craco --inspect-brk test --runInBand --no-cache",
"eject": "react-scripts eject",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x}",
"prepare": "husky install",
"postinstall": "husky install && shx rm -rf .git/hooks && shx ln -s ../.husky .git/hooks && npx nyc instrument --compact=false src instrumented",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"nyc": {
"exclude": [
"**/reportWebVitals.ts"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.5",
"@cypress/instrument-cra": "^1.4.0",
"@tailwindcss/postcss7-compat": "^2.0.4",
"@testing-library/react": "^11.2.5",
"@types/cypress": "^1.1.3",
"@types/mongodb": "^3.6.12",
"@types/rc-slider": "^8.6.6",
"@types/react-pdf": "^5.0.2",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"autoprefixer": "^9.8.6",
"cypress": "^7.2.0",
"cypress-file-upload": "^5.0.6",
"cypress-wait-until": "^1.7.1",
"eslint": "^7.22.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.2.0",
"jest-dom": "^4.0.0",
"mongodb": "^3.6.6",
"postcss": "^7.0.35",
"prettier": "^2.2.1",
"react-test-renderer": "^17.0.2",
"shx": "^0.3.3",
"tailwindcss": "1.4.6"
}
}