-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 824 Bytes
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
{
"name": "e-commerce-store",
"version": "1.0.0",
"description": "",
"main": "backend/server.js",
"scripts": {
"dev": "node --watch backend/server.js",
"start": "node backend/server.js",
"build": "npm install && npm install --prefix frontend && npm run build --prefix frontend"
},
"keywords": [],
"author": "",
"type": "module",
"license": "ISC",
"dependencies": {
"@pinecone-database/pinecone": "^7.1.0",
"axios": "^1.13.5",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.6",
"dotenv": "^16.6.1",
"express": "^4.19.2",
"groq-sdk": "^0.37.0",
"ioredis": "^5.4.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.3",
"stripe": "^16.8.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6"
}
}