-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "timostaudinger.com",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "playwright test",
"test:update-snapshots": "playwright test --update-snapshots"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"bcryptjs": "^3.0.3",
"cookie": "^1.1.1",
"gray-matter": "^4.0.3",
"jose": "^6.2.2",
"jsonwebtoken": "^9.0.3",
"next": "^16.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-feather": "^2.0.10",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-behead": "^3.1.0",
"remark-rehype": "^11.1.2",
"typescript": "^6.0.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.2.4",
"@playwright/test": "^1.58.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@typescript-eslint/eslint-plugin": "8.59.0",
"@typescript-eslint/parser": "8.59.0",
"eslint": "^10.2.1",
"eslint-config-next": "^16.2.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"prettier": "^3.8.3"
}
}