-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
115 lines (115 loc) · 3.46 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "falling-fruit",
"description": "React-based, mobile-friendly frontend for Falling Fruit's website",
"version": "0.1.0",
"private": true,
"license": "GPL-3.0",
"homepage": "https://falling-fruit.vercel.app/",
"engines": {
"node": "^16.20"
},
"dependencies": {
"@fontsource/lato": "^4.3.0",
"@reach/accordion": "^0.13.2",
"@reach/checkbox": "^0.13.2",
"@reach/combobox": "^0.13.2",
"@reach/dialog": "^0.15.0",
"@reach/slider": "^0.15.0",
"@reach/tabs": "^0.13.0",
"@reach/window-size": "^0.13.2",
"@reduxjs/toolkit": "^1.5.1",
"@styled-icons/boxicons-logos": "^10.47.0",
"@styled-icons/boxicons-regular": "^10.47.0",
"@styled-icons/boxicons-solid": "^10.23.0",
"axios": "^0.21.1",
"coordinate-parser": "^1.0.7",
"debounce": "^1.2.1",
"formik": "^2.2.6",
"google-map-react": "^2.1.9",
"i18next": "^20.2.1",
"i18next-browser-languagedetector": "^6.1.0",
"i18next-http-backend": "^1.2.2",
"polished": "^4.1.1",
"ramda": "^0.27.1",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.1.0",
"react-data-table-component": "^7.3.1",
"react-dom": "^17.0.1",
"react-dropzone": "^11.4.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.8.13",
"react-is": "^17.0.1",
"react-loading-skeleton": "^2.2.0",
"react-redux": "^7.2.4",
"react-responsive-carousel": "^3.2.22",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"react-select": "^4.3.0",
"react-split-pane": "^0.1.92",
"react-toastify": "^8.1.0",
"react-virtualized-auto-sizer": "^1.0.6",
"react-window": "^1.8.6",
"react-window-infinite-loader": "^1.0.7",
"reaptcha": "^1.7.3",
"styled-components": "^5.2.1",
"typescript": "^4.4.3, <4.5.0",
"use-places-autocomplete": "^1.9.1",
"web-vitals": "^0.2.4",
"yup": "^0.32.9"
},
"devDependencies": {
"@hack4impact-uiuc/eslint-plugin": "^2.0.10",
"@types/react-router-dom": "^5.3.3",
"@types/react-select": "^4.0.18",
"@types/react-window": "^1.8.5",
"@types/styled-components": "^5.1.26",
"eslint": "^7.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^3.4.1"
},
"scripts": {
"start": "react-scripts start",
"lint": "yarn lint:check --fix",
"lint:check": "eslint src --ext js,jsx,ts,tsx",
"format": "yarn format:output --write",
"format:check": "yarn format:output --check",
"format:output": "prettier \"./**/*.{js,jsx,ts,tsx,css,scss,json,md}\"",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"genApiSchema": "npx openapi-typescript https://raw.githubusercontent.com/falling-fruit/api/main/docs/openapi.yml --output src/utils/apiSchema.ts",
"genData": "node scripts/data.js https://opensheet.elk.sh/1GSB07pn7RMbZbFwv85CextwGzUTTGE2ZJZxn0XxvoEg src/constants/data"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true,
"semi": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./**/*.{js,jsx,ts,tsx,css,scss,json,md}": [
"prettier --write"
],
"./**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
}
}