-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"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}'",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false,
"printWidth": 100
},
"engines": {
"node": ">=22.x"
},
"dependencies": {
"@types/node": "^22.13.11",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"cheerio": "^1.0.0-rc.12",
"date-fns-tz": "^3.2.0",
"encoding": "^0.1.13",
"eslint": "^9.23.0",
"eslint-config-next": "^15.5.2",
"eslint-config-prettier": "^10.1.1",
"highlight.js": "^11.7.0",
"microcms-js-sdk": "^3.2.0",
"next": "^15.2.3",
"prettier": "^3.5.3",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.8.2"
},
"devDependencies": {
"@playwright/test": "^1.54.2"
}
}