-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.24 KB
/
package.json
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
{
"name": "web-axendev",
"version": "2.1.0",
"description": "Personal portfolio app",
"author": "Maciej Piotr (aXenDev) Balcerzak",
"license": "GPL-3.0 license",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "cross-env ANALYZE=true npm run build",
"lint": "eslint . && stylelint \"**/*.{css,scss}\"",
"lint:fix": "eslint . --fix && stylelint \"**/*.{css,scss}\" --fix",
"test": "cross-env TZ=UTC vitest",
"t:coverage": "cross-env TZ=UTC vitest run --coverage"
},
"dependencies": {
"clsx": "^2.1.0",
"date-fns": "^3.3.1",
"framer-motion": "^11.0.8",
"hotkeys-js": "^3.13.7",
"lucide-react": "^0.344.0",
"next": "^14.1.1",
"next-intl": "^3.9.1",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-swipeable": "^7.0.1",
"react-use": "^17.5.0",
"react-virtuoso": "^4.7.1",
"sharp": "^0.33.2",
"swiper": "^11.0.7"
},
"devDependencies": {
"@floating-ui/react": "^0.26.9",
"@mdx-js/loader": "^3.0.1",
"@mdx-js/react": "^3.0.1",
"@next/bundle-analyzer": "^14.1.1",
"@next/mdx": "^14.1.1",
"@testing-library/react": "^14.2.1",
"@types/mdx": "^2.0.11",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@typescript-eslint/parser": "^7.1.0",
"@vercel/analytics": "^1.2.2",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"@vitest/ui": "^1.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"jsdom": "^24.0.0",
"prettier": "^3.2.5",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.71.1",
"stylelint": "^16.2.1",
"stylelint-config-clean-order": "^5.4.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-prettier": "^5.0.0",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
}
}