-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.03 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
{
"name": "auction",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write .",
"postinstall": "prisma generate",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.18",
"@chakra-ui/react": "^2.5.5",
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fontsource/faustina": "^4.5.3",
"@hookform/resolvers": "^2.8.8",
"@mdx-js/loader": "^2.3.0",
"@next/bundle-analyzer": "^12.0.7",
"@next/mdx": "^13.3.1",
"@prisma/client": "^4.12.0",
"@react-icons/all-files": "^4.1.0",
"chrome-aws-lambda": "^9.1.0",
"cross-env": "^7.0.3",
"dayjs": "^1.10.7",
"framer-motion": "^10.11.4",
"gray-matter": "^4.0.3",
"leaflet": "^1.7.1",
"next": "^13.3.0",
"next-mdx-remote": "^4.4.1",
"ol": "^6.9.0",
"puppeteer": "^19.8.5",
"puppeteer-core": "^9.1.1",
"react": "^18.2.0",
"react-countdown": "^2.3.2",
"react-countup": "^6.4.2",
"react-dom": "^18.2.0",
"react-hook-form": "^7.17.5",
"react-infinite-scroll-component": "^6.1.0",
"react-leaflet": "^4.2.1",
"react-number-format": "^4.8.0",
"react-slick": "^0.29.0",
"react-visibility-sensor": "^5.1.1",
"remark": "^14.0.2",
"remark-html": "^15.0.2",
"sharp": "^0.32.0",
"slick-carousel": "^1.8.1",
"swr": "^1.0.1",
"uuid": "^8.3.2",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/cors": "^2.8.12",
"@types/leaflet": "^1.7.6",
"@types/react": "17.0.29",
"@types/react-slick": "^0.23.7",
"@types/uuid": "^8.3.4",
"cli-progress": "^3.9.1",
"eslint": "^8.38.0",
"eslint-config-next": "^13.3.0",
"prettier": "^2.8.7",
"prisma": "^4.12.0",
"typescript": "^5.0.4"
}
}