-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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": "nextjs-simple-blog-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css}'"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"printWidth": 100
},
"engines": {
"node": ">=18.x"
},
"dependencies": {
"@types/cheerio": "^0.22.31",
"@types/node": "^22.13.9",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"cheerio": "^1.0.0-rc.12",
"date-fns-tz": "^3.2.0",
"encoding": "^0.1.13",
"eslint": "^9.21.0",
"eslint-config-next": "^15.2.1",
"eslint-config-prettier": "^10.0.2",
"highlight.js": "^11.7.0",
"microcms-js-sdk": "^3.1.2",
"next": "^15.2.1",
"prettier": "^3.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.8.2"
}
}