-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 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": "lig-nextjs-microcms-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next-export-optimize-images",
"postbuild": "next-sitemap",
"start": "next start",
"lint:html": "markuplint 'src/**/*.{html,jsx,tsx}'",
"lint:style": "stylelint 'src/**/*.{css,scss}'",
"lint:es": "next lint",
"lint:check": "npm run lint:html && npm run lint:style && npm run lint:es",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"microcms-js-sdk": "^2.7.0",
"next": "14.0.1",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@markuplint/jsx-parser": "^3.11.0",
"@markuplint/react-spec": "^3.12.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"markuplint": "^3.14.0",
"next-export-optimize-images": "^3.2.0",
"next-sitemap": "^4.2.3",
"prettier": "^3.0.3",
"sass": "^1.69.4",
"stylelint": "^15.11.0",
"stylelint-config-recess-order": "^4.3.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-prettier": "^4.0.2",
"typed-scss-modules": "^7.1.4",
"typescript": "^5"
}
}