-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.33 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
{
"name": "realtime-coffee-order",
"version": "1.0.0",
"description": "Just ordering some fresh coffee",
"main": "server.js",
"scripts": {
"start-dev": "concurrently \"npm run watch\" \"nodemon server.js\"",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --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 --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"author": "SURE7",
"license": "ISC",
"dependencies": {
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"connect-mongo": "^3.2.0",
"dayjs": "^1.9.3",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"express-flash": "0.0.2",
"express-session": "^1.17.1",
"mongoose": "^5.10.9",
"noty": "^3.2.0-beta",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"concurrently": "^5.3.0",
"cross-env": "^7.0.2",
"laravel-mix": "^5.0.7",
"nodemon": "^2.0.5",
"resolve-url-loader": "^3.1.2",
"sass": "^1.27.0",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.12"
}
}