-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.3 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "portfolio",
"description": "A redesign of my portfolio website.",
"version": "1.2.8",
"author": {
"name": "Alin Ali Hassan",
"email": "[email protected]",
"url": "https://alinalihassan.com/"
},
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/alinalihassan/portfolio"
},
"scripts": {
"build": "next build",
"postbuild": "next-sitemap",
"dev": "next dev",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@next/env": "^13.1.1",
"@svgr/webpack": "^6.5.1",
"@vercel/analytics": "^0.1.6",
"classnames": "^2.3.2",
"date-fns": "^2.29.3",
"gray-matter": "^4.0.3",
"lodash.orderby": "^4.6.0",
"markdown-to-jsx": "^7.1.8",
"next": "13.1.1",
"next-mdx-remote": "^4.2.1",
"next-redux-wrapper": "^8.1.0",
"nprogress": "^0.2.0",
"prism-react-renderer": "^1.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "^18.2.0",
"react-redux": "^8.0.5",
"react-typed": "^1.2.0",
"reading-time": "^1.5.0",
"redux": "^4.2.0",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.2",
"styled-components": "^5.3.6",
"typescript": "^4.9.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/lodash.orderby": "^4.6.7",
"@types/node": "18.11.18",
"@types/nprogress": "^0.2.0",
"@types/react": "^18.0.26",
"@types/react-redux": "^7.1.25",
"@types/styled-components": "^5.1.26",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"next-sitemap": "^3.1.44",
"semantic-release": "^19.0.5",
"tsconfig-paths-webpack-plugin": "^4.0.0"
},
"resolutions": {
"@types/react": "^18.0.21"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github"
],
"branches": [
"main"
]
}
}