-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.6 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
{
"name": "devhood",
"version": "2.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"optimize-images": "node scripts/optimize-images.mjs",
"prebuild": "node scripts/optimize-images.mjs",
"build": "tsc -b && vite build",
"preview": "vite preview --port 4173",
"lint": "eslint .",
"typecheck": "tsc --noEmit -p tsconfig.app.json",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install --with-deps chromium",
"format": "prettier --write ."
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@playwright/test": "^1.61.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^26.1.1",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"@vitejs/plugin-react": "^5.2.0",
"autoprefixer": "^10.5.2",
"eslint": "^9.39.5",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^15.9.0",
"jsdom": "^25.0.1",
"postcss": "^8.5.18",
"prettier": "^3.9.5",
"sharp": "^0.35.3",
"tailwindcss": "^3.4.13",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.4",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=20"
}
}