-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.88 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "portfolio",
"private": true,
"version": "0.37.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"lint-staged": "pnpm xo --prettier || true",
"lint:fix": "pnpm xo --fix",
"preview": "vite preview",
"prepare": "husky",
"release-i": "dotenv release-it --only-version --",
"release:patch": "dotenv release-it --only-version -- --ci",
"test": "vitest run",
"ox": "oxlint -c .xo-config.json",
"update-deps": "pnpm up -i --latest",
"pr-master": "gh pr create --fill -B master",
"release:minor": "dotenv release-it minor -- --ci",
"release:major": "dotenv release-it major -- --ci",
"release": "pnpm release:minor"
},
"dependencies": {
"@babel/runtime": "^7.24.4",
"devicon": "^2.16.0",
"devicons-react": "^1.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-inlinesvg": "^4.1.3",
"react-obfuscate": "^3.6.9",
"react-router": "^6.23.0",
"react-router-dom": "^6.23.0",
"react-tooltip": "^5.26.4",
"simple-icons": "^11.14.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@faker-js/faker": "^8.4.1",
"@release-it/conventional-changelog": "^8.0.1",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.12.7",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"clsx": "^2.1.1",
"commitlint": "^19.3.0",
"dotenv-cli": "^7.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-use-extend-native": "^0.5.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-unicorn": "^52.0.0",
"happy-dom": "^14.7.1",
"husky": "^9.0.11",
"oxlint": "^0.3.1",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"release-it": "^17.2.1",
"sass": "^1.75.0",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.3",
"tailwindcss-unsplash": "^1.1.1",
"typescript": "^5.4.5",
"unplugin-fonts": "^1.1.1",
"vite": "^5.2.10",
"vite-plugin-pages": "^0.32.1",
"vite-plugin-qrcode": "^0.2.3",
"vitest": "^1.5.2",
"xo": "^0.58.0"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true
},
"extends": [
"xo-react",
"./node_modules/xo/config/plugins.js"
]
}
}