forked from CIPHERTron/portfolio-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "pritishsamal.com",
"private": true,
"description": "Pritish Samal's portfolio",
"version": "1.0.0",
"author": "CIPHERTron",
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze": "cross-env ANALYZE=true yarn build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up": "yarn upgrade-interactive",
"up-latest": "yarn up --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/react": "^1.7.4",
"@emotion/cache": "^11.7.1",
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@fontsource/catamaran": "^4.5.0",
"@fontsource/recursive": "^4.5.0",
"@giscus/react": "^1.0.1",
"chakra-ui-markdown-renderer": "^3.0.1",
"cors": "^2.8.5",
"framer-motion": "^4.1.17",
"gray-matter": "^4.0.3",
"next": "^12.0.8",
"next-seo": "^4.28.1",
"preact": "^10.6.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-markdown": "^7.1.2",
"react-syntax-highlighter": "^15.4.5",
"rehype-raw": "^6.1.1",
"remark": "^14.0.2",
"remark-html": "^15.0.1",
"rss": "^1.2.2",
"sass": "^1.48.0",
"twemoji": "^13.1.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.0.0",
"@next/bundle-analyzer": "^12.0.8",
"@types/cors": "^2.8.12",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/react-syntax-highlighter": "^13.5.2",
"@types/rss": "^0.0.29",
"@types/twemoji": "^12.1.2",
"@types/umami": "^0.1.0",
"commitlint": "^16.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.6.0",
"eslint-config-next": "^12.0.8",
"eslint-config-sznm": "^0.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.7",
"next-sitemap": "^1.9.9",
"prettier": "^2.5.1",
"standard-version": "^9.3.2",
"typescript": "^4.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/CIPHERTron/portfolio"
},
"bugs": {
"url": "https://github.com/CIPHERTron/portfolio/issues"
}
}