-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.75 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
{
"name": "vitesse-react",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "bun --bun vite",
"build": "bun --bun vite build",
"preview": "bun --bun vite preview",
"lint": "bun --bun eslint --ext .js,.jsx,.ts,.tsx --cache --fix --quiet ./",
"format": "bun --bun prettier --write ./src",
"prepare": "husky",
"test": "vitest",
"typecheck": "tsc"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.2",
"react-use": "^17.5.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@iconify-json/carbon": "^1.2.4",
"@iconify/tailwind": "^1.1.3",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.8.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"@vitejs/plugin-legacy": "^6.0.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"babel-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"commitlint": "^19.5.0",
"eslint": "^8.57.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "19.0.0-beta-df7b47d-20241124",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"happy-dom": "^15.11.7",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.16",
"terser": "^5.37.0",
"typescript": "^5.7.2",
"vite": "6.0.3",
"vitest": "2.1.8"
}
}