-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.79 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "portfolio-dashboard",
"version": "1.0.0",
"description": "Nodejs authetication boilerplate support google oauth",
"main": "app.js",
"repository": "https://github.com/MuhammadAkbar11/portfolio-dashboard.git",
"author": "MuhammadAkbar11",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon app.js",
"start": "node app.js",
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.config.cjs --watch --progress",
"build": "webpack --config webpack.config.cjs --progress",
"seed": "cross-env NODE_ENV=development node src/seeds/index.js seed=import",
"seed:destroy": "cross-env NODE_ENV=development node src/seeds/index.js seed=destroy",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build"
},
"browserslist": [
"> 0.5%",
"last 2 major versions",
"not dead",
"Chrome >= 60",
"Firefox >= 60",
"not Edge < 79",
"Firefox ESR",
"iOS >= 10",
"Safari >= 10",
"Android >= 6",
"not Explorer <= 11"
],
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/preset-env": "7.15.6",
"@babel/register": "7.15.3",
"autoprefixer": "10.3.6",
"babel-eslint": "10.1.0",
"babel-loader": "8.2.2",
"copy-webpack-plugin": "9.0.1",
"cross-env": "^7.0.3",
"css-loader": "6.3.0",
"css-minimizer-webpack-plugin": "3.0.2",
"eslint": "7.32.0",
"file-loader": "6.2.0",
"filemanager-webpack-plugin": "6.1.7",
"hard-source-webpack-plugin": "0.13.1",
"mini-css-extract-plugin": "2.3.0",
"node-sass": "6.0.1",
"nodemon": "^2.0.15",
"postcss-loader": "6.1.1",
"sass-loader": "12.1.0",
"terser-webpack-plugin": "5.2.4",
"url-loader": "4.1.1",
"webpack": "5.55.1",
"webpack-cli": "4.8.0",
"webpack-dev-server": "4.3.0"
},
"dependencies": {
"@babel/polyfill": "7.12.1",
"@popperjs/core": "2.10.1",
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"bootstrap": "5.1.1",
"chalk": "^5.0.0",
"chart.js": "2.9.4",
"colors": "^1.4.0",
"connect-flash": "^0.1.1",
"connect-mongo": "^4.6.0",
"cors": "^2.8.5",
"dayjs": "^1.10.7",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.2",
"express-session": "^1.17.2",
"express-validator": "^6.14.0",
"feather-icons": "4.28.0",
"flatpickr": "4.6.9",
"googleapis": "^92.0.0",
"jsvectormap": "1.3.3",
"method-override": "^3.0.0",
"mongoose": "^6.1.4",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"nodemailer": "^6.7.2",
"passport": "^0.5.2",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"simplebar": "5.3.6",
"socket.io": "^4.4.1",
"socket.io-client": "^4.4.1",
"uuid": "^8.3.2"
}
}