-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "starter",
"version": "1.1.0",
"description": "",
"main": "app.js",
"scripts": {
"start": " node -r dotenv/config ./bootstrap/server.js",
"server": " nodemon -r dotenv/config --require pretty-error/start --ignore storage/sessions/ ./bootstrap/server.js",
"dev": "npm run development",
"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",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"mixproduction": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"keywords": [
"express"
],
"author": "alri",
"license": "MIT",
"dependencies": {
"api-error-handler": "^1.0.0",
"app-root-path": "^3.0.0",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto-random-string": "^3.3.0",
"csurf": "^1.11.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.1",
"express-status-monitor": "^1.3.3",
"helmet": "^4.2.0",
"hpp": "^0.2.3",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"mongodb": "^3.6.3",
"mongoose": "^5.10.15",
"mongoose-paginate-v2": "^1.3.13",
"mongoose-plugin-autoinc": "^1.1.9",
"mongoose-timestamp": "^0.6.0",
"mongoose-unique-validator": "^2.0.3",
"morgan": "^1.10.0",
"nunjucks": "^3.2.2",
"pretty-error": "^2.1.2",
"serve-favicon": "^2.5.0",
"session-file-store": "^1.5.0",
"validatorjs": "^3.22.1"
},
"devDependencies": {
"axios": "^0.21.4",
"cross-env": "^7.0.2",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-vue": "^7.2.0",
"htmlhint": "^0.14.2",
"laravel-mix": "^5.0.9",
"metro4-dist": "^4.5.0",
"resolve-url-loader": "^3.1.2",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"vue": "^2.6.12",
"vue-axios": "^3.2.0",
"vue-router": "^3.4.9",
"vue-template-compiler": "^2.6.12"
}
}