forked from safak/e-commerce-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.47 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
{
"name": "e-commerce-ui",
"version": "1.0.0",
"description": "Full-stack e-commerce platform with Next.js",
"private": true,
"workspaces": [
"client",
"admin"
],
"scripts": {
"dev": "concurrently \"npm run dev --workspace=client\" \"npm run dev --workspace=admin\"",
"build": "npm run build --workspace=client && npm run build --workspace=admin",
"start": "concurrently \"npm run start --workspace=client\" \"npm run start --workspace=admin\"",
"lint": "npm run lint --workspace=client && npm run lint --workspace=admin",
"setup": "./setup.sh",
"validate-config": "node scripts/validate-config.js",
"install-all": "npm install && npm install --workspace=client && npm install --workspace=admin",
"clean": "npm run clean --workspace=client && npm run clean --workspace=admin",
"type-check": "npm run type-check --workspace=client && npm run type-check --workspace=admin"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"keywords": [
"e-commerce",
"nextjs",
"typescript",
"tailwindcss",
"shadcn",
"stripe",
"postgresql",
"redis"
],
"author": "Your Name",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/e-commerce-ui.git"
},
"bugs": {
"url": "https://github.com/yourusername/e-commerce-ui/issues"
},
"homepage": "https://github.com/yourusername/e-commerce-ui#readme"
}