-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
132 lines (132 loc) · 3.62 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "yxans-klagan",
"homepage": "https://yxans-klagan.vercel.app/",
"repository": {
"url": "https://github.com/syradar/yxans-klagan"
},
"private": true,
"license": "MIT",
"engines": {
"node": "20"
},
"type": "module",
"version": "1.2.0",
"scripts": {
"dev": "vite",
"dev:safari": "vite --port 8080",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "vitest",
"coverage": "vitest --coverage --reporter=vitest-sonar-reporter --outputFile=reports/sonar-report.xml",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"upgrade": "npx npm-check -u",
"verify-upgrade": "npm run lint && npm run build && npm run test"
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@heroicons/react": "^2.1.1",
"@reduxjs/toolkit": "^2.2.1",
"@types/react-redux": "^7.1.33",
"@vercel/analytics": "^1.2.2",
"date-fns": "^3.6.0",
"history": "^5.3.0",
"nanoid": "^5.0.6",
"react": "^18.2.0",
"react-aria": "^3.32.1",
"react-dom": "^18.2.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"react-stately": "^3.30.1",
"ts-results": "^3.3.0",
"usehooks-ts": "^3.0.1",
"web-vitals": "^3.5.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^11.0.3",
"@semantic-release/release-notes-generator": "^12.1.0",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/ramda": "^0.29.11",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.3.1",
"autoprefixer": "^10.4.18",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"last-release-git": "^0.0.3",
"pinst": "^3.0.0",
"postcss": "^8.4.35",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"ramda": "^0.29.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2",
"vite": "^5.1.6",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.3.1",
"vitest-sonar-reporter": "^2.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
],
"release": {
"branches": [
"main"
]
}
}