forked from netlify/netlify-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 820 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 820 Bytes
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
{
"private": true,
"type": "module",
"scripts": {
"dev": "next",
"build": "next build",
"lint": "eslint '**/*.{ts,tsx}' --cache && tsc --noEmit --pretty",
"start": "next start"
},
"dependencies": {
"@netlify/blobs": "^6.5.0",
"@netlify/edge-functions": "^2.3.1",
"@netlify/functions": "^2.6.0",
"next": "^14.1.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"water.css": "^2.1.1"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.0.0-rc.4",
"@types/node": "^18.11.5",
"@types/react": "^18.0.23",
"@types/react-dom": "^18.0.7",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"prettier": "^3.2.5",
"typescript": "^4.8.4"
}
}