-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 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
{
"name": "surveyor",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --outputFile test-results.json --json",
"eject": "react-scripts eject",
"prettier": "prettier \"src/**/*.{js,html}\" --write",
"lint": "eslint \"src/**/*.{js,jsx}\" --quiet",
"lint-fix": "npm run lint -- --fix",
"format": "npm run prettier && npm run lint-fix",
"stylelint": "stylelint '**/*.scss'",
"lint-in-file": "eslint \"src/**/*.{js,jsx}\" --quiet --output-file ./eslint-output.json -f json",
"danger": "npx danger ci",
"cypress-open": "cypress open",
"cypress-run": "cypress run"
},
"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"
]
},
"dependencies": {
"axios": "0.20.0",
"bootstrap": "4.5.2",
"formik": "2.1.5",
"history": "5.0.0",
"node-sass": "4.14.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-loading-skeleton": "2.1.1",
"react-router-dom": "5.2.0",
"react-scripts": "3.4.3",
"react-select-search": "2.2.0",
"react-slick": "0.27.11",
"slick-carousel": "1.8.1",
"yup": "0.29.3"
},
"devDependencies": {
"@testing-library/cypress": "7.0.6",
"@testing-library/jest-dom": "4.2.4",
"@testing-library/react": "9.5.0",
"@testing-library/user-event": "7.2.1",
"babel-eslint": "10.1.0",
"cross-env": "7.0.2",
"cypress": "7.3.0",
"cypress-autorecord": "2.0.0",
"danger": "10.3.0",
"danger-plugin-jest": "1.3.0",
"danger-plugin-stylelint": "0.0.5",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-cypress": "2.11.1",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsx-a11y": "6.3.1",
"eslint-plugin-react": "7.20.6",
"eslint-plugin-react-hooks": "4.0.8",
"prettier": "2.0.5",
"stylelint": "13.6.1",
"stylelint-config-rational-order": "0.1.2",
"stylelint-config-sass-guidelines": "7.0.0"
}
}