-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
92 lines (92 loc) · 2.98 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
{
"name": "sensors.africa",
"description": "sensors.AFRICA",
"version": "0.4.26",
"private": true,
"main": "index.js",
"homepage": "https://sensors.africa/",
"repository": "https://github.com/CodeForAfrica/sensors.AFRICA.git",
"author": "Code For Africa",
"license": "GNU GPLv3",
"scripts": {
"dev": "next dev",
"format": "yarn prettier --write --ignore-path './.gitignore' '**/*.+(json|md|yml)' '.'",
"format-staged": "yarn prettier --write '**/*.+(json|md|yml)'",
"codemod": "yarn codemod-staged-optimal-imports './src' && yarn codemod-staged-top-level-imports './src'",
"codemod-staged-optimal-imports": "yarn jscodeshift --transform=node_modules/@material-ui/codemod/lib/v4.0.0/optimal-imports.js",
"codemod-staged-top-level-imports": "yarn jscodeshift --transform=node_modules/@material-ui/codemod/lib/v4.0.0/top-level-imports.js",
"start": "next start",
"build": "next build",
"lint": "yarn eslint --fix --ignore-path './.gitignore' './'",
"lint-staged": "yarn eslint --fix --ext '.js,.json,.md'",
"prepare": "husky install"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"@fortawesome/fontawesome-svg-core": "^1.2.32",
"@fortawesome/free-brands-svg-icons": "^5.15.1",
"@fortawesome/free-solid-svg-icons": "^5.15.1",
"@fortawesome/react-fontawesome": "^0.1.12",
"@material-ui/core": "^4.12.4",
"@svgr/webpack": "^6.2.1",
"clsx": "^1.1.1",
"next": "^13.5.6",
"next-seo": "^6.1.0",
"papaparse": "^5.3.1",
"prop-types": "^15.7.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-feather": "^2.0.8",
"react-select": "^5.2.2",
"react-share": "^4.3.1",
"sharp": "^0.32.6",
"victory": "^36.2.1",
"webpack": "^5.88.2"
},
"devDependencies": {
"@babel/core": "^7.22.15",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.22.15",
"@material-ui/codemod": "^4.5.1",
"babel-plugin-module-resolver": "^4.0.0",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^13.4.19",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-module-resolver": "^1.5.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^7.0.1",
"jscodeshift": "^0.13.0",
"lint-staged": "^12.3.3",
"prettier": "^3.0.3",
"svg-url-loader": "^7.1.1"
},
"browserslist": [
"defaults"
],
"lint-staged": {
"*.js": [
"yarn lint-staged"
],
"*.{json,md}": [
"yarn lint-staged",
"yarn format-staged"
],
"*.yml": [
"yarn format-staged"
]
},
"engines": {
"node": "20.x",
"yarn": "1"
},
"packageManager": "[email protected]"
}