-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.19 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
{
"name": "my-project",
"version": "0.1.0",
"private": true,
"license": "UNLICENSED",
"scripts": {
"start": "craco start",
"build": "craco build",
"test": "craco test",
"publish:heroku": "git push heroku main:main",
"publish:firebase": "yarn format && yarn build && firebase deploy",
"_start": "react-scripts start",
"_build": "react-scripts build",
"format": "prettier --config ./prettier.config.js --write ./src/**/*.{js,jsx} && eslint --fix ./src/**/*.{js,jsx}",
"lint": "eslint \"./**/*.{js,jsx}\"",
"lint:fix": "eslint \"./**/*.{js,jsx}\" --fix",
"eject": "react-scripts eject"
},
"dependencies": {
"@craco/craco": "^6.4.3",
"@reach/dialog": "^0.16.2",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@tippyjs/react": "^4.2.6",
"axios": "^0.24.0",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"formik": "^2.2.9",
"js-cookie": "^3.0.1",
"node-sass": "^7.0.0",
"react": "^17.0.2",
"react-datepicker": "^4.5.0",
"react-dom": "^17.0.2",
"react-dropdown-select": "^4.8.0",
"react-dropzone": "^12.0.4",
"react-icons": "^4.3.1",
"react-query": "^3.34.16",
"react-responsive-modal": "^6.2.0",
"react-router-dom": "^6.1.1",
"react-scripts": "5.0.0-next.58",
"react-spring": "^9.3.3",
"react-table": "^7.7.0",
"react-toastify": "^8.1.0",
"web-vitals": "^2.1.2",
"yup": "^0.32.11"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"postcss": "^8.4.4",
"prettier": "^2.5.1",
"tailwindcss": "^3.0.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}