-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 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
60
61
62
63
64
65
66
67
68
{
"name": "alexandr-sidorenko.me",
"description": "Личный сайт и блог",
"keywords": [
"сайт",
"блог"
],
"homepage": "https://alexandr-sidorenko.me/",
"bugs": {
"url": "https://github.com/batyshkaLenin/alexandr-sidorenko.me/issues"
},
"license": "MIT",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"not-work-lint": "next lint",
"lint": "eslint --ext .ts,.tsx,.mjs,.js .",
"prepare": "husky install",
"postbuild": "next-sitemap && node --experimental-modules scripts/generateRss.mjs"
},
"lint-staged": {
"*.{js,mjs,jsx,ts,tsx}": [
"yarn lint"
]
},
"dependencies": {
"@pondorasti/remark-img-links": "1.0.8",
"@sentry/nextjs": "7.34.0",
"@vercel/analytics": "0.1.8",
"classnames": "2.3.2",
"date-fns": "2.29.3",
"feed": "4.2.2",
"gray-matter": "4.0.3",
"next": "13.0.2",
"next-pwa": "5.6.0",
"next-sitemap": "3.1.49",
"next-ym": "2.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"remark": "14.0.2",
"remark-html": "15.0.1",
"sass": "1.58.1",
"sharp": "0.31.3",
"swr": "2.0.3"
},
"devDependencies": {
"@feature-sliced/eslint-config": "0.1.0-beta.6",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@typescript-eslint/eslint-plugin": "5.49.0",
"@typescript-eslint/parser": "5.49.0",
"concurrently": "7.6.0",
"cross-env": "7.0.3",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"eslint-config-prettier": "8.6.0",
"eslint-import-resolver-typescript": "3.5.3",
"eslint-plugin-boundaries": "3.1.0",
"eslint-plugin-prettier": "4.2.1",
"fork-ts-checker-webpack-plugin": "7.3.0",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"prettier": "2.8.3",
"typescript": "4.9.4"
}
}