-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.88 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.88 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
{
"name": "next-11",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npx prisma generate dev --name init && next dev",
"build": "npx prisma generate init && next build",
"migrate:dev": "npx prisma generate dev --name init",
"start": "next start",
"scrape": "node --loader ts-node/esm --experimental-specifier-resolution=node ./scrapers/index.ts",
"pretty": "prettier --write .",
"lint": "next lint",
"format": "next lint && prettier --write ."
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@googlemaps/google-maps-services-js": "^3.3.41",
"@mapbox/mapbox-sdk": "^0.15.3",
"@mui/icons-material": "^5.14.16",
"@mui/material": "^5.14.17",
"@prisma/client": "^5.2.0",
"@splinetool/react-spline": "^2.2.6",
"@splinetool/runtime": "^0.9.521",
"@types/swiper": "^6.0.0",
"atomic-state": "^2.3.8",
"autoprefixer": "^10.4.15",
"axios": "^1.5.1",
"bs-icon": "^0.0.6",
"cheerio": "^1.0.0-rc.12",
"daisyui": "^3.7.3",
"fuse.js": "^7.0.0",
"g-i-s": "^2.1.7",
"http": "^0.0.1-security",
"http-react": "^3.0.5",
"https": "^1.0.0",
"infisical-node": "^1.5.0",
"js-cookie": "^3.0.5",
"mapbox-gl": "^2.15.0",
"next": "^13.4.19",
"nodemon": "^3.0.1",
"postcss": "^8.4.29",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"react-kuh": "^0.1.0",
"react-map-gl": "^7.1.6",
"request": "^2.79.0",
"swiper": "^11.0.5",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.5.4",
"@types/js-cookie": "^3.0.3",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.6.0",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"eslint": "^8.55.0",
"eslint-config-next": "13.5.4",
"prisma": "^5.2.0",
"typescript": "^5.2.2"
}
}