-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.71 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.71 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
{
"name": "moonrabbit_web",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --project ./config/tsconfig.json && vite build",
"lint:check": "eslint --config ./config/eslint.config.js src",
"lint:fix": "eslint --config ./config/eslint.config.js src --fix",
"format:fix": "prettier --write --config ./config/.prettierrc.json 'src/**/*.{js,jsx,ts,tsx,css,md,json}'",
"fix": "npm run format:fix && npm run lint:fix",
"preview": "vite preview"
},
"dependencies": {
"@tailwindcss/vite": "^4.1.3",
"@types/styled-components": "^5.1.34",
"axios": "^1.9.0",
"clsx": "^2.1.1",
"lucide-react": "^0.487.0",
"react": "^18.3.1",
"react-dom": "18.3.1",
"react-router-dom": "^7.4.0",
"styled-components": "^6.1.17",
"tailwind-merge": "^3.0.2",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@tailwindcss/postcss": "^4.1.3",
"@types/node": "^22.13.11",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^8.27.0",
"@typescript-eslint/parser": "^8.27.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.21",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"tailwindcss": "^4.1.3",
"typescript": "4.9.5",
"typescript-eslint": "^8.24.1",
"vite": "^6.2.2"
}
}