-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.56 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
{
"name": "resume-builder",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@craco/craco": "^7.0.0",
"@fontsource/roboto": "^4.5.8",
"@react-pdf/renderer": "^3.0.1",
"@rjsf/antd": "^5.0.0-beta.12",
"@rjsf/core": "^5.0.0-beta.12",
"@rjsf/utils": "^5.0.0-beta.12",
"@rjsf/validator-ajv8": "^5.0.0-beta.12",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"antd": "^4.24.1",
"antd-img-crop": "^4.2.8",
"craco-less": "^2.0.0",
"eslint-config-xo-react": "^0.27.0",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.39.3",
"react-pdf": "^6.0.2",
"react-router-dom": "^6.4.3",
"react-scripts": "5.0.1",
"react-use": "^17.4.0",
"slate": "^0.85.0",
"slate-react": "^0.83.2",
"typescript": ">=4.4",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "xo && craco test",
"eject": "react-scripts eject",
"prepare": "husky install",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx,json}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx,json}'",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!antd|@ant-design|rc-.+?|@babel/runtime).+(js|jsx)$"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-pdf": "^5.7.4",
"@typescript-eslint/eslint-plugin": ">=5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"antd-dayjs-webpack-plugin": "^1.0.6",
"eslint": ">=8.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-config-xo": "^0.43.1",
"eslint-config-xo-typescript": "^0.55.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"xo": "^0.53.1"
}
}