-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.18 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
{
"name": "vreshch.com",
"version": "6.0.0",
"private": true,
"type": "module",
"description": "Personal Website vreshch.com 6.0",
"author": {
"name": "Volodymyr Vreshch",
"email": "vreshch@gmail.com",
"url": "http://vreshch.com"
},
"homepage": "http://vreshch.com",
"repository": {
"type": "git",
"url": "git+https://github.com/vreshch/vreshch.com.git"
},
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start -p 3000",
"lint": "next lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"type-check": "tsc --noEmit",
"verify": "npm run type-check && npm run lint && npm run build && npm run test",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui"
},
"dependencies": {
"@chemistry/crystalview": "^3.0.0",
"@chemistry/molpad": "^3.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"next": "^15.5.20",
"next-mdx-remote": "^6.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.3",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.35.3",
"shiki": "^4.3.1",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^22.20.0",
"@types/react": "^19.2.17",
"@typescript-eslint/eslint-plugin": "^8.62.1",
"@typescript-eslint/parser": "^8.57.1",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.5.2",
"eslint": "^9.39.4",
"eslint-config-next": "^15.5.20",
"eslint-config-prettier": "^10.1.5",
"jsdom": "^28.1.0",
"pixelmatch": "^7.2.0",
"pngjs": "^7.0.0",
"postcss": "^8.5.16",
"prettier": "^3.9.4",
"tailwindcss": "^4.1.8",
"typescript": "^5.8.3",
"vitest": "^4.1.9"
}
}