-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
71 lines (71 loc) · 1.81 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
{
"name": "us-congress-pizza-flag-tracker-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^11.2.6",
"@testing-library/user-event": "^13.1.9",
"axios": "^0.21.1",
"bootstrap": "^5.2.0-beta1",
"css-select": "^4.1.3",
"lodash": "^4.17.21",
"nth-check": "^2.1.1",
"react": "^17.0.2",
"react-alice-carousel": "^2.6.4",
"react-dom": "^17.0.2",
"react-router-dom": "^6.3.0",
"react-scripts": "^5.0.1",
"react-select": "^5.2.1",
"react-to-print": "^2.14.4",
"react-validation": "^3.0.7",
"svgo": "^2.8.0",
"validator": "^13.6.0",
"web-vitals": "^1.1.1"
},
"devDependencies": {
"@svgr/plugin-svgo": "^6.2.0",
"@svgr/webpack": "^6.2.1",
"cypress": "^9.5.1",
"cypress-localstorage-commands": "^1.6.1",
"eslint": "^8.20.0",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"format": "prettier --write src/**/*.{js,jsx,tsx}",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"cypress:open": "cypress open",
"cy:run": "cypress run",
"lint": "eslint --fix --ext .js,.jsx .",
"lint comment": "npm run lint -- --fix"
},
"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"
]
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,jsx,tsx}": "prettier --write"
}
}