-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "nextjs-playground",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "run-p generate:sitemap generate:rss",
"start": "next start",
"lint": "run-p lint:scripts lint:styles",
"lint:scripts": "next lint",
"lint:styles": "stylelint \"**/*.scss\"",
"prepare": "husky install",
"generate:sitemap": "NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-sitemap.mjs",
"generate:rss": "NODE_OPTIONS='--experimental-json-modules' node ./scripts/generate-rss.mjs"
},
"dependencies": {
"clsx": "^1.1.1",
"gray-matter": "^4.0.3",
"lodash.kebabcase": "^4.1.1",
"mdx-bundler": "^8.0.1",
"next": "12.0.10",
"react": "17.0.2",
"react-dom": "17.0.2",
"reading-time": "^1.5.0",
"rehype-prism-plus": "^1.3.1",
"remark-mdx-images": "^1.0.3",
"sass": "^1.49.7",
"sharp": "^0.30.0"
},
"devDependencies": {
"@types/lodash.kebabcase": "^4.1.6",
"@types/node": "16.11.12",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-next": "12.0.10",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-prettier": "^4.0.0",
"globby": "^13.1.1",
"husky": "^7.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rss": "^1.2.2",
"stylelint": "^14.3.0",
"stylelint-config-concentric-order": "^5.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-scss": "^4.1.0",
"typescript": "4.5.5",
"typescript-plugin-css-modules": "^3.4.0"
},
"resolutions": {
"postcss": "^8.4.5"
}
}