forked from uppadhyayraj/my-basket-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.28 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 4.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "nextn",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node scripts/run-with-op.js next dev --turbopack -p 9002",
"genkit:dev": "node scripts/run-with-op.js genkit start -- tsx src/ai/dev.ts",
"genkit:watch": "node scripts/run-with-op.js genkit start -- tsx --watch src/ai/dev.ts",
"build": "node scripts/run-with-op.js next build",
"start": "next start -p 9002",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"microservices:start": "./scripts/start-microservices.sh",
"microservices:start:win": ".\\scripts\\start-microservices.bat",
"microservices:start:unix": "./scripts/start-microservices.sh",
"microservices:stop": "./scripts/stop-microservices.sh",
"microservices:stop:win": ".\\scripts\\stop-microservices.bat",
"microservices:stop:unix": "./scripts/stop-microservices.sh",
"microservices:health": "./scripts/health-check.sh",
"microservices:health:win": ".\\scripts\\health-check.bat",
"microservices:health:unix": "./scripts/health-check.sh",
"microservices:install": "cd microservices/product-service && npm install && cd ../cart-service && npm install && cd ../order-service && npm install && cd ../ai-service && npm install && cd ../api-gateway && npm install",
"build:deployment": "./scripts/build-for-deployment.sh",
"docker:build": "docker compose build",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:logs": "docker compose logs -f",
"test": "playwright test",
"test:api": "playwright test --project=api",
"test:ui": "playwright test --project=ui-chromium",
"test:ui:firefox": "playwright test --project=ui-firefox",
"test:ui:all": "playwright test --project=ui-chromium --project=ui-firefox",
"test:debug": "playwright test --debug",
"test:headed": "playwright test --headed",
"test:ui:watch": "playwright test --project=ui-chromium --ui",
"test:report": "playwright show-report",
"test:codegen": "playwright codegen localhost:9002",
"dev:full": "npm run microservices:start:win && npm run dev"
},
"dependencies": {
"@genkit-ai/googleai": "^1.8.0",
"@genkit-ai/next": "^1.8.0",
"@hookform/resolvers": "^4.1.3",
"@radix-ui/react-accordion": "^1.2.3",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-avatar": "^1.1.3",
"@radix-ui/react-checkbox": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-menubar": "^1.1.6",
"@radix-ui/react-popover": "^1.1.6",
"@radix-ui/react-progress": "^1.1.2",
"@radix-ui/react-radio-group": "^1.2.3",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slider": "^1.2.3",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toast": "^1.2.6",
"@radix-ui/react-tooltip": "^1.1.8",
"@tanstack-query-firebase/react": "^1.0.5",
"@tanstack/react-query": "^5.66.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"dotenv": "^16.5.0",
"firebase": "^11.8.1",
"genkit": "^1.8.0",
"lucide-react": "^0.475.0",
"next": "^15.3.4",
"patch-package": "^8.0.0",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.54.2",
"recharts": "^2.15.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.24.2"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@jest/globals": "^30.2.0",
"@playwright/test": "^1.58.1",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"eslint": "9.39.2",
"eslint-config-next": "16.1.3",
"eslint-plugin-react-hooks": "^7.0.1",
"genkit-cli": "^1.8.0",
"globals": "^17.3.0",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"typescript-eslint": "^8.54.0"
}
}