-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
94 lines (94 loc) · 2.69 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
{
"name": "planet-farm",
"version": "0.1.0",
"private": true,
"dependencies": {
"@hookform/error-message": "^2.0.0",
"@react-pdf/renderer": "^2.0.16",
"@reduxjs/toolkit": "^1.8.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"aws-amplify": "^3.3.27",
"axios": "^0.21.1",
"classnames": "^2.3.1",
"dayjs": "^1.10.7",
"dotenv": "^8.2.0",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
"immutability-helper": "^3.1.1",
"js-file-download": "^0.4.12",
"lottie-react": "^2.2.1",
"moment": "^2.29.1",
"node-sass": "^6.0.0",
"parcel": "^2.0.0-rc.0",
"react": "^17.0.2",
"react-alert": "^7.0.3",
"react-dnd": "^14.0.2",
"react-dnd-html5-backend": "^14.0.0",
"react-dom": "^17.0.2",
"react-dropzone": "^11.3.2",
"react-easy-crop": "^4.0.2",
"react-hook-form": "^6.15.4",
"react-input-mask": "^2.0.4",
"react-modal": "^3.14.3",
"react-phone-number-input": "^3.1.25",
"react-player": "^2.9.0",
"react-portal": "^4.2.1",
"react-query": "^3.17.1",
"react-redux": "^7.2.3",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-select": "^5.2.2",
"react-textarea-autosize": "^8.3.3",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.3.0",
"reselect": "^4.1.5",
"uuid": "^8.3.2",
"web-vitals": "^1.0.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"concurrently": "^6.0.2",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"parcel-plugin-static-files-copy": "^2.5.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"standard": "^16.0.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"api": "npm start --prefix api",
"dev": "concurrently \"npm run start\" \"npm run api\"",
"pretty": "prettier --write \"src/**/*.{js,jsx,ts,tsx,css,md,json}\"",
"lint": "npx eslint \"src/**/*.{js,jsx,ts,tsx}\" --fix --color ."
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}