This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.29 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"typechain:generate": "yarn typechain --target=ethers-v5 ./contract/Gourmet.json --out-dir=./contract",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@emotion/react": "^11.10.0",
"@emotion/server": "^11.10.0",
"@mantine/core": "^5.1.6",
"@mantine/form": "^5.1.7",
"@mantine/hooks": "^5.1.6",
"@mantine/next": "^5.1.6",
"@mantine/notifications": "^5.2.4",
"@mapbox/mapbox-gl-geocoder": "^5.0.1",
"@typechain/ethers-v5": "^10.1.0",
"@usedapp/core": "^1.1.3",
"ethers": "^5.6.9",
"firebase": "^9.9.3",
"mapbox-gl": "^2.10.0",
"next": "^13.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-map-gl": "^7.0.19",
"typechain": "^8.1.0"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.0.6",
"@storybook/addon-interactions": "^7.0.6",
"@storybook/addon-links": "^7.0.6",
"@storybook/blocks": "^7.0.6",
"@storybook/nextjs": "^7.0.6",
"@storybook/react": "^7.0.6",
"@storybook/testing-library": "^0.0.14-next.2",
"@types/mapbox__mapbox-gl-geocoder": "^4.7.3",
"@types/node": "18.6.3",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/react-map-gl": "^6.1.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"autoprefixer": "^10.4.8",
"eslint": "^8.35.0",
"eslint-config-next": "^13.2.3",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import-access": "^1.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sort-keys-custom-order": "^1.0.5",
"eslint-plugin-storybook": "^0.6.11",
"husky": "^8.0.3",
"hygen": "^6.2.11",
"lint-staged": "^13.1.2",
"postcss": "^8.4.14",
"prettier": "^2.8.4",
"storybook": "^7.0.6",
"tailwindcss": "^3.1.7",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix .",
"prettier --write ."
],
"**/*.{json,md,mdx,css,html,yml,yaml,scss}": [
"prettier --write ."
]
}
}