-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.42 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
{
"name": "realtime-pizza-order",
"version": "1.0.0",
"description": "Realtime pizza order app",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "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"
},
"repository": "https://github.com/nvlinh99/realtime-pizza-order.git",
"author": "Linh Nguyen Vu <nguyenvulinh99@gmail.com>",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"connect-mongo": "^3.2.0",
"cross-env": "^7.0.2",
"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",
"moment": "^2.27.0",
"mongoose": "^5.10.0",
"node-forge": "^0.10.0",
"noty": "^3.2.0-beta",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"socket.io": "^2.3.0"
},
"devDependencies": {
"laravel-mix": "^5.0.4",
"nodemon": "^2.0.4",
"resolve-url-loader": "^3.1.0",
"sass": "^1.26.10",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.6.11"
}
}