-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
{
"name": "jugaad-marketplace",
"version": "1.0.0",
"description": "A smart marketplace for buying and selling items with features like chat, purchase history, and review system.",
"main": "server/index.js",
"scripts": {
"start": "concurrently \"npm run server\" \"npm run client\"",
"server": "nodemon server/index.js",
"client": "webpack serve --mode development --open",
"build": "webpack --mode production",
"deploy": "gh-pages -d public"
},
"repository": {
"type": "git",
"url": "https://github.com/yourusername/jugaad-marketplace.git"
},
"keywords": [
"marketplace",
"ecommerce",
"chat",
"reviews",
"purchase history"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"bcryptjs": "^3.0.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"express-session": "^1.19.0",
"gh-pages": "^6.0.0",
"jsonwebtoken": "^9.0.3",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.22.15",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"css-loader": "^6.8.1",
"html-webpack-plugin": "^5.5.3",
"nodemon": "^3.0.1",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}