forked from mongodb-university/atlas_starter_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "farm",
"version": "1.0.0",
"description": "farm's website",
"scripts": {
"dev": "next dev -H 0.0.0.0",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"prettier": "prettier --write .",
"lint": "next lint"
},
"keywords": [],
"author": "Mathias Silva",
"license": "MIT",
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/next-js": "^2.1.4",
"@chakra-ui/react": "^2.4.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@vercel/analytics": "^1.0.2",
"framer-motion": "^10.12.16",
"mongodb": "^6.3.0",
"mongoose": "^8.0.1",
"next": "^13.4.4",
"next-sitemap": "^2.5.28",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.3.1",
"react-in-viewport": "^1.0.0-alpha.27",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.6",
"three": "^0.134.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-next": "^12.0.4",
"prettier": "^2.4.1"
},
"browser": { "fs": false, "child_process": false }
}