-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.25 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
{
"name": "covidonation",
"version": "1.0.0",
"description": "List of resources, donations, charities and information on ways to help in Coronavirus (COVID-19) pandemic.",
"main": "src/index.js",
"private": true,
"homepage": ".",
"scripts": {
"setup": "node setup.js",
"prestart": "npm run setup",
"prebuild": "npm run setup",
"pretest": "npm run setup",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:watch": "npm test -- -u --watch",
"test:coverage": "npm test -- --coverage --watchAll=false --reporters=default --reporters=jest-junit",
"format": "prettier --write \"src/**/*.{js,html,css,scss,json,svg}\"",
"preview": "npm run build && npx serve -s build",
"cf:cache:purge": "node ./purge-cf-cache.js",
"deploy": "gh-pages -d build"
},
"keywords": [
"coronavirus",
"covid-19",
"covid19",
"resources",
"donation",
"charities",
"sars-cov-2"
],
"author": {
"name": "Jabran Rafique",
"email": "[email protected]"
},
"contributors": [
{
"name": "Arslan Mushtaq",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@jabranr-lab/prettier": "^1.2.1",
"@prettier/plugin-xml": "^0.7.2",
"axios": "^0.21.4",
"classnames": "^2.3.1",
"cloudflare": "^2.9.1",
"dayjs": "^1.11.5",
"gh-pages": "^2.0.1",
"history": "^4.10.1",
"husky": "^4.3.8",
"jest-junit": "^10.0.0",
"js-cookie": "^2.2.1",
"lazysizes": "^5.3.2",
"lodash-es": "^4.17.21",
"pretty-quick": "^2.0.2",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.3.3",
"react-scripts": "^3.4.4",
"sass": "^1.54.9",
"typography": "^0.16.21"
},
"eslintConfig": {
"extends": "react-app"
},
"prettier": "@jabranr-lab/prettier",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"volta": {
"node": "14.19.3"
},
"dependencies": {}
}