-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.69 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
{
"name": "musereview",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"stylelint": "stylelint \"src/**/*.{css,tsx}\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint",
"prettier --write"
],
"*.css": [
"stylelint --fix",
"prettier --write"
],
"**/*.{json,md}": [
"prettier --write"
]
},
"dependencies": {
"@tailwindcss/vite": "^4.3.1",
"@tanstack/react-query": "^5.101.1",
"@tanstack/react-query-devtools": "^5.101.1",
"axios": "^1.18.1",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-hook-form": "^7.80.0",
"react-router-dom": "^7.18.0",
"tailwindcss": "^4.3.1",
"tone": "^15.1.22",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/node": "^26.0.1",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react": "^5.0.3",
"eslint": "^9.36.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"postcss": "^8.5.15",
"prettier": "^3.9.0",
"prettier-plugin-tailwindcss": "^0.8.0",
"stylelint": "^17.14.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^8.1.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.7",
"vite-plugin-svgr": "^5.2.0"
}
}