-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "amarshop",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:all": "concurrently -n fe,be -c cyan,magenta \"npm run dev\" \"cd backend && npm run start:dev\"",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:unit": "jest",
"test:e2e": "playwright test",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@tanstack/react-query": "^5.101.2",
"axios": "^1.18.1",
"critters": "^0.0.23",
"framer-motion": "^12.42.2",
"jose": "^6.0.11",
"lightningcss": "^1.32.0",
"lucide-react": "^1.23.0",
"next": "^16.2.9",
"react": "19.2.4",
"react-dom": "19.2.4",
"uuid": "^14.0.1",
"zustand": "^5.0.14"
},
"devDependencies": {
"@playwright/test": "^1.52.0",
"@tailwindcss/postcss": "^4.1.8",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"concurrently": "^9.2.4",
"eslint": "^9.39.5",
"eslint-config-next": "^16.2.11",
"jest": "^29.7.0",
"tailwindcss": "^4.1.8",
"typescript": "^5.7.3"
}
}