forked from miksrv/developer-portfolio-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.33 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
{
"name": "developer-portfolio-website",
"version": "1.1.6",
"description": "Fully customizable, modern developer portfolio template built with Typescript, React and Next.js",
"keywords": [
"software developer",
"portfolio",
"typescript",
"next.js",
"react"
],
"author": "Misha Topchilo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/miksrv/developer-portfolio-website.git"
},
"homepage": "https://miksoft.pro",
"bugs": {
"url": "https://github.com/miksrv/developer-portfolio-website/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next build && next export",
"start": "next start",
"test": "jest",
"test:coverage": "jest --coverage",
"eslint:check": "eslint",
"eslint:fix": "eslint --fix",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write ."
},
"dependencies": {
"dayjs": "^1.11.13",
"next": "15.0.3",
"next-seo": "^6.6.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-github-calendar": "^4.5.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/js": "^9.15.0",
"@next/eslint-plugin-next": "^15.0.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/identity-obj-proxy": "^3.0.2",
"@types/jest": "^29.5.14",
"@types/node": "22.9.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"eslint": "^9.15.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-eslint-plugin": "^6.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"sass": "^1.81.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.15.0"
},
"packageManager": "[email protected]"
}