-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 1.05 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
43
{
"name": "nextjs-simple-corporate-site-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": "18.15.3",
"@types/react": "18.0.28",
"@types/react-dom": "18.0.11",
"cheerio": "^1.0.0-rc.12",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"eslint": "8.36.0",
"eslint-config-next": "13.2.4",
"eslint-config-prettier": "^8.7.0",
"highlight.js": "^11.7.0",
"microcms-js-sdk": "^2.3.3",
"next": "^13.4.2",
"prettier": "^2.8.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.5"
}
}