-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.27 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.27 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
{
"version": "1.0.0",
"name": "mitya-kurs-portfolio",
"author": {
"name": "Mitya Kurs",
"email": "mitekk@gmail.com"
},
"homepage": "https://profile.mitya.dev/",
"repository": {
"type": "git",
"url": "https://github.com/mitekk/portfolio.git"
},
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"format": "prettier --write .",
"format:files": "prettier --write",
"format:check": "prettier --check .",
"preview": "vite preview",
"lhci": "npm run build && lhci autorun",
"lhci:autorun": "lhci autorun",
"test:unit": "vitest run",
"test:unit:ci": "mkdir -p test-results && vitest run --reporter=default --reporter=junit --outputFile.junit=test-results/vitest-junit.xml",
"test:unit:watch": "vitest",
"test:unit:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ci": "mkdir -p test-results && PLAYWRIGHT_JUNIT_OUTPUT_DIR=test-results PLAYWRIGHT_JUNIT_OUTPUT_NAME=playwright-junit.xml playwright test --output=playwright-test-results --reporter=line,junit,html",
"test": "vitest run && playwright test",
"prepare": "husky",
"postbuild": "node scripts/prerender.cjs"
},
"dependencies": {
"@fontsource/poppins": "^5.2.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-helmet-async": "^3.0.0",
"react-router-dom": "^7.6.1"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.58.2",
"@tailwindcss/vite": "^4.1.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^8.57.1",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"prettier": "3.6.2",
"react-snap": "^1.23.0",
"tailwindcss": "^4.1.6",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vitest": "^4.1.2"
}
}