-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 828 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 828 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
32
33
34
{
"name": "next-typescript-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"tsc": "tsc",
"eslint": "eslint .",
"prettier": "prettier --write ."
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.5.0",
"contentful": "^10.15.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"next": "16.0.7",
"prettier": "^3.3.3",
"react": "^18",
"react-dom": "^18",
"react-markdown": "^9.0.1"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.10",
"typescript": "^5.6.2"
}
}