-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.69 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "nextjs-microcms-blog",
"version": "2.2.0",
"private": true,
"scripts": {
"analyze": "ANALYZE=true yarn build",
"dev": "run-p dev:*",
"dev:next": "next dev",
"dev:path": "pathpida --output src/utils --watch",
"build": "pathpida --output src/utils && next build",
"postbuild": "next-sitemap",
"start": "next start",
"fix": "prettier --write './**/*.{js,jsx,ts,tsx}'",
"lint-staged": "lint-staged",
"lint": "next lint",
"lint:fix": "next lint --fix",
"tsc": "tsc",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint . --cache --fix",
"prettier --write"
]
},
"dependencies": {
"dayjs": "1.11.2",
"highlight.js": "11.5.1",
"lazysizes": "^5.3.2",
"microcms-js-sdk": "2.0.0",
"microcms-richedit-processer": "1.1.0",
"next": "12.1.6",
"next-head-seo": "0.1.3",
"next-sitemap": "3.0.5",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-scroll": "1.8.7",
"react-use": "17.4.0",
"rss": "1.2.2",
"swr": "1.3.0"
},
"devDependencies": {
"@next/bundle-analyzer": "12.1.6",
"@types/react": "18.0.12",
"@types/react-scroll": "1.8.3",
"@types/rss": "0.0.29",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "8.0.1",
"lint-staged": "13.0.0",
"npm-run-all": "4.1.5",
"pathpida": "0.18.1",
"postcss": "8.4.14",
"postcss-custom-properties": "12.1.7",
"postcss-nested": "5.0.6",
"prettier": "2.6.2",
"typescript": "4.7.3"
}
}