-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·93 lines (93 loc) · 2.78 KB
/
package.json
File metadata and controls
executable file
·93 lines (93 loc) · 2.78 KB
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
89
90
91
92
93
{
"name": "portfolio.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "npm run check-env && next dev",
"build": "next build",
"test-unit": "vitest",
"test-e2e": "npx playwright test --ui",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint --fix \"**/*.{js,jsx,ts,tsx}\"",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,scss,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,scss,css,md}\"",
"check-env": "node -r dotenv/config scripts/check-env.js",
"test:connection": "node -r dotenv/config db/testConnection.js",
"prepare": "husky install",
"postinstall": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,scss,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@lucia-auth/adapter-mongodb": "^1.0.3",
"@sendgrid/mail": "^8.1.4",
"@types/jsonwebtoken": "^9.0.7",
"dotenv": "^16.4.5",
"framer-motion": "^11.18.2",
"install": "^0.13.0",
"isomorphic-dompurify": "^2.23.0",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.7.0",
"mongoose": "^8.4.3",
"next": "^15.1.0",
"next-auth": "^4.24.10",
"next-intl": "^4.3.7",
"nookies": "^2.5.2",
"npm": "^10.8.2",
"openai": "^6.7.0",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.5.0",
"react-intersection-observer": "^9.10.2",
"react-markdown": "^9.0.1",
"react-spring": "^9.7.3",
"react-syntax-highlighter": "^5.8.0",
"remark-gfm": "^4.0.0",
"resend": "^4.6.0",
"sass": "^1.77.4",
"sharp": "^0.33.4",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@playwright/test": "^1.49.0",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@types/cookie": "^0.6.0",
"@types/jest": "29.5.11",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.10.1",
"@types/react": "^18.3.14",
"@types/react-dom": "^18.3.3",
"@types/react-scroll": "^1.8.10",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"husky": "^9.1.7",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jsdom": "^22.0.0",
"lint-staged": "^15.2.2",
"prettier": "^3.5.3",
"vitest": "^3.1.1"
}
}