-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.54 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.54 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
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
{
"version": "0.1.0",
"name": "fridge-finder",
"description": "A mobile friendly website that displays an interactive map of all the community fridges in and around New York City.",
"keywords": [
"nyc",
"food bank",
"community fridge",
"map"
],
"homepage": "https://github.com/FridgeFinder/CFM_Frontend#readme",
"author": "Fridge Finder <fridgefinderapp@gmail.com>",
"contributors": [
"Andrew R",
"Bernard Martis (https://bernardm.github.io/)",
"Briana Calderón Navarro (https://github.com/GlobalHands)",
"Hamaad Chughtai (https://github.com/Hamaad102)",
"Ioana Tiplea (https://github.com/ioanat94)",
"Jaron Earle (https://github.com/jaronaearle)",
"Linh Chi Nguyen (https://github.com/ayaderaghul)",
"Luke Conley (https://github.com/grandballoon)",
"Ricardo Camacho Mireles (https://github.com/rcamach7)",
"Ricky Saka (https://github.com/SakaRicky)",
"Sean Redmon (https://github.com/seanred360)",
"Trillium Smith (https://github.com/Spiteless)",
"Weston Norwood (https://github.com/wheninseattle)",
"Youssef El Rhilassi (https://github.com/YELrhilassi)"
],
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/FridgeFinder/CFM_Frontend.git"
},
"bugs": {
"url": "https://github.com/FridgeFinder/CFM_Frontend/issues"
},
"directories": {
"doc": "./docs"
},
"type": "module",
"scripts": {
"postinstall": "npx simple-git-hooks",
"dev": "concurrently --names \"MOCK,NEXT\" --prefix-colors \"yellow,green\" --kill-others \"npx json-server mock/data.json --routes mock/server-routes.json --host 127.0.0.1 --port 3050\" \"npx next --turbopack\"",
"web": "next",
"data": "npx json-server mock/data.json --routes mock/server-routes.json --host 127.0.0.1 --port 3050",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint --cache --fix ci/ etl/ src/",
"style": "prettier --write --ignore-unknown . && svgo -qrf public/",
"test": "jest --coverage"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"packageManager": "yarn@1.22.15",
"simple-git-hooks": {
"pre-commit": "lint-staged --quiet --no-stash --concurrent true",
"commit-msg": "node ci/commit-msg.mjs $1"
},
"dependencies": {
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.9.0",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@mui/icons-material": "^7.3.4",
"@mui/material": "^7.3.4",
"@types/react": "^19.2.2",
"formik": "^2.2.9",
"fuse.js": "^7.1.0",
"leaflet": "^1.8.0",
"next": "^16.0.10",
"prop-types": "^15.8.1",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-leaflet": "^5.0.0",
"yup": "^1.7.1",
"zustand": "^5.0.8"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/eslint-parser": "^7.28.4",
"@babel/plugin-syntax-jsx": "^7.27.1",
"@eslint/js": "^9.38.0",
"@next/eslint-plugin-next": "^16.0.7",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"eslint": "^9.38.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^16.4.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"json-server": "0.17.4",
"prettier": "^3.6.2",
"simple-git-hooks": "^2.7.0"
},
"optionalDependencies": {
"@faker-js/faker": "^7.5.0",
"entities": "^4.3.1",
"picocolors": "^1.0.0",
"url-exist": "^3.0.1"
}
}