-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.04 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.04 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
{
"name": "tadas-baltrunas-portfolio",
"private": true,
"version": "2.0.0",
"type": "module",
"engines": {
"node": ">=22.12.0 <23"
},
"scripts": {
"dev": "vite",
"build": "vite build && npm run metadata:generate",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings=0",
"style:lint": "stylelint \"src/**/*.scss\"",
"format:check": "prettier . --check",
"test": "vitest run",
"test:e2e": "playwright test",
"metadata:generate": "node scripts/generate-route-html.mjs",
"metadata:validate": "node scripts/validate-route-html.mjs",
"check": "npm run typecheck && npm run lint && npm run style:lint && npm run format:check && npm run test && npm run build && npm run metadata:validate"
},
"dependencies": {
"@fontsource/ibm-plex-mono": "^5.1.0",
"@fontsource/ibm-plex-sans": "^5.1.0",
"@fontsource/space-grotesk": "^5.1.0",
"clsx": "^2.1.1",
"framer-motion": "^12.23.0",
"lucide-react": "^0.539.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^6.30.4",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@eslint/js": "^9.34.0",
"@playwright/test": "^1.55.0",
"@testing-library/jest-dom": "^6.8.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.3.0",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^5.0.2",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jsdom": "^26.1.0",
"prettier": "^3.6.2",
"sass": "^1.94.2",
"stylelint": "^16.26.0",
"stylelint-config-standard-scss": "^16.0.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0",
"vite": "^7.1.3",
"vitest": "^4.1.8"
}
}