-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.16 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
{
"name": "food-express",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"connect-mongo": "^4.2.2",
"cross-env": "^7.0.3",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-flash": "^0.0.2",
"express-session": "^1.17.1",
"moment": "^2.29.1",
"mongoose": "^5.11.18",
"noty": "^3.2.0-beta-deprecated",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"socket.io": "^4.0.0",
"toastify-js": "^1.9.3"
},
"scripts": {
"dev": "nodemon 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 --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"laravel-mix": "^6.0.13",
"nodemon": "^2.0.7",
"postcss": "8.1",
"resolve-url-loader": "3.1.2",
"sass": "^1.32.8",
"sass-loader": "10.*"
}
}