-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.47 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
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "yoko",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"sass": "sass src/assets/sass/main.scss src/assets/css/main.css --watch",
"sass-migrate": "npx sass-migrator module --migrate-deps src/assets/sass/main.scss",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --passWithNoTests --coverage",
"test:workflow:local": "vitest related --passWithNoTests --coverage=false",
"lint": "eslint",
"lint:all": "eslint .",
"lint:fix": "eslint --fix",
"lint:fix:all": "eslint . --fix",
"format": "prettier --write",
"format:check": "prettier --check",
"format:all": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"format:check:all": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"prepare": "husky",
"type-check": "tsc --noEmit",
"analyze": "vite build --mode analyze"
},
"dependencies": {
"@floating-ui/react-dom": "^2.1.9",
"@sentry/react": "^10.53.1",
"date-fns": "^4.1.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-router": "^7.12.0",
"uuid": "^13.0.0",
"zustand": "^5.0.10"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@vitejs/plugin-react-swc": "^4.2.2",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-sonarjs": "^3.0.5",
"git-commit-msg-linter": "^5.0.8",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"rollup-plugin-visualizer": "^6.0.5",
"sass": "^1.97.2",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1",
"vitest": "^4.0.17"
},
"release": {
"branches": [
"main"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,mdx,css,scss}": "prettier --write",
"*.{js,jsx,ts,tsx}": [
"eslint --cache --fix",
"vitest related --passWithNoTests --coverage=false"
]
}
}