-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "wetherspenny",
"author": "charliertm",
"description": "wetherspenny is a simple website to show you the cheapest drinks at wetherspoons",
"version": "0.1.0",
"license": "MIT",
"homepage": "https://github.com/charliertm/wetherspenny",
"private": true,
"engines": {
"node": ">=16.0.0",
"yarn": ">=1.22.0",
"npm": "please-use-yarn"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.7.4",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"chakra-ui-autocomplete": "^1.4.5",
"framer-motion": "^5",
"haversine-distance": "^1.2.1",
"next": "^12.1.6",
"node-fetch": "^3.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@svgr/webpack": "^6.2.0",
"@types/node": "^17.0.36",
"@types/react": "^18.0.10",
"eslint": "8.7.0",
"eslint-config-next": "12.0.8",
"husky": "^8.0.1",
"prettier": "^2.6.2",
"typescript": "^4.7.2"
}
}