-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.66 KB
/
package.json
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
{
"name": "realtime-pizza-delivery-application",
"version": "1.0.0",
"description": "In this project I will build a realtime online pizza order app using NodeJs, ExpressJs and MongoDB. I will be using tailwind css for frontend as a css framework and will be using EJS template engine as well. I will be using socket.io for realtime communication.",
"main": "index.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "npm run development -- --watch",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"author": "Titiksha Gupta",
"license": "ISC",
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@stripe/stripe-js": "^2.4.0",
"axios": "^1.6.5",
"bcrypt": "^5.1.1",
"connect-mongo": "^5.1.0",
"cookie-parser": "^1.4.6",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-ejs-layouts": "^2.5.1",
"express-flash": "^0.0.2",
"express-session": "^1.17.3",
"moment": "^2.30.1",
"mongoose": "^8.0.4",
"moongoose": "^0.0.5",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"socket.io": "^4.7.4",
"stripe": "^14.14.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"cross-env": "^7.0.3",
"laravel-mix": "^6.0.49",
"nodemon": "^3.0.2",
"resolve-url-loader": "^5.0.0",
"sass": "^1.69.6",
"sass-loader": "^12.1.0"
}
}