-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.74 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
46
47
48
49
50
51
52
53
{
"name": "ParCour",
"version": "1.0.0",
"description": "realtime courier delivery app",
"main": "index.js",
"author": "John Paul Fusin",
"license": "MIT",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"development": "cross-env NODE_ENV=development NODE_OPTIONS=--openssl-legacy-provider 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_OPTIONS=--openssl-legacy-provider node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"build": "node server.js --production"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"alertifyjs": "^1.13.1",
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"connect-mongo": "^3.2.0",
"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",
"http-errors": "^1.8.0",
"moment": "^2.28.0",
"mongoose": "^5.10.5",
"nodemailer": "^6.7.5",
"noty": "^3.2.0-beta",
"order-id": "^2.0.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"prettier": "^3.2.4",
"randomstring": "^1.2.2",
"serve-favicon": "^2.5.0",
"socket.io": "^2.3.0",
"sweetalert2": "^10.3.3"
},
"devDependencies": {
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"laravel-mix": "^5.0.5",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"resolve-url-loader": "^3.1.1",
"sass": "^1.26.10",
"sass-loader": "^10.0.1",
"vue-template-compiler": "^2.6.12"
}
}