-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.29 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.29 KB
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
{
"name": "rest-countries",
"homepage": "http://rajibds.github.io/rest-countries",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.21.1",
"node-sass": "4.14.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"throttle-debounce": "^3.0.1",
"web-vitals": "^0.2.4"
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"gh-pages": "^3.1.0",
"jest-junit": "^12.0.0",
"prettier": "^2.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"deploy": "yarn build && gh-pages -d build",
"test": "react-scripts test",
"test:watch": "TZ=UTC jest --watch",
"test:ci": "yarn test --ci --testResultsProcessor jest-junit --runInBand",
"lint": "eslint --ext .js,.jsx src",
"fix:lint": "eslint --ext .js,.jsx src --fix",
"fix:prettier": "prettier --write \"src/**/*.*\""
},
"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"
]
}
}