-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "personal-website",
"private": true,
"description": "The personal website of Mykolas Krupauskas.",
"version": "0.1.0",
"author": "Mykolas Krupauskas <[email protected]>",
"bugs": {
"url": "https://github.com/mkrupauskas/personal-website/issues"
},
"dependencies": {
"@sentry/browser": "^6.12.0",
"@sentry/nextjs": "^6.19.7",
"gray-matter": "^4.0.3",
"marked": "^4.0.15",
"next": "^12.1.6",
"next-typography": "^1.0.1",
"prism-theme-night-owl": "^1.4.0",
"prismjs": "^1.28.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-refresh": "^0.13.0",
"react-toggle": "^4.1.2",
"react-typography": "^0.16.20",
"reading-time": "^1.5.0",
"save": "^2.4.0",
"typeface-merriweather": "1.1.13",
"typeface-montserrat": "1.1.13",
"typography": "^0.16.21",
"typography-theme-wordpress-2016": "^0.16.19",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@types/node": "^17.0.33",
"@types/react": "^18.0.9",
"@types/typography": "^0.16.4",
"eslint": "^7.32.0",
"eslint-config-next": "^12.1.6",
"prettier": "^2.4.1",
"typescript": "^4.6.4"
},
"homepage": "https://mkrup.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mkrupauskas/personal-website.git"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --write src/**/*.{js,jsx,json,css}"
}
}