-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 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
{
"name": "ebay-store",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"verify:apis": "node scripts/verify-apis.mjs",
"verify:conflicts": "node scripts/check-conflicts.mjs",
"analyze": "ANALYZE=true npm run build"
},
"dependencies": {
"@vercel/analytics": "^1.4.1",
"@vercel/speed-insights": "^1.1.0",
"lucide-react": "^0.460.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@next/bundle-analyzer": "^15.1.6",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.20",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"stream-browserify": "^3.0.0",
"tailwindcss": "^3.4.17",
"typescript": "^5"
}
}