-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.8 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
{
"name": "webcms",
"version": "1.0.0",
"description": "A simple CMS more to start your project!",
"main": "server-app/server.js",
"scripts": {
"start": "webpack --config webpack-dashboard-config.js --mode=production && node_modules/pm2/bin/pm2 start ecosystem.config.js --env production",
"server-production": "node_modules/pm2/bin/pm2 start ecosystem.config.js --env production && node_modules/pm2/bin/pm2 logs",
"server-development": "node_modules/pm2/bin/pm2 start ecosystem.config.js --env development --watch && node_modules/pm2/bin/pm2 logs",
"server-monit": "node_modules/pm2/bin/pm2 monit",
"server-logs": "node_modules/pm2/bin/pm2 logs",
"server-stop": "node_modules/pm2/bin/pm2 kill",
"dashboard-development": "webpack --config webpack-dashboard-config.js -w --mode=development",
"dashboard-production": "webpack --config webpack-dashboard-config.js --mode=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"WebCMS"
],
"author": "https://github.com/eduardobc88",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"chart.js": "^2.9.4",
"ejs": "^3.1.6",
"ejs-loader": "^0.5.0",
"express-mysql-session": "^2.1.7",
"fastify": "^3.15.1",
"fastify-auth": "^1.1.0",
"fastify-cookie": "^5.3.1",
"fastify-cors": "^6.0.1",
"fastify-csrf": "^3.1.0",
"fastify-formbody": "^5.0.0",
"fastify-helmet": "^5.3.1",
"fastify-multipart": "^4.0.5",
"fastify-session": "^5.2.1",
"fastify-socket.io": "^3.0.0",
"fastify-static": "^4.2.0",
"fastify-url-data": "^3.0.3",
"fs": "0.0.1-security",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mariadb": "^2.5.3",
"moment": "^2.29.4",
"mysql-migrations": "^1.0.7",
"mysql2": "^2.3.0",
"node-datetime": "^2.1.2",
"node-gyp": "^8.0.0",
"pm2": "^4.5.6",
"point-of-view": "^4.14.0",
"pump": "^3.0.0",
"qrcode-terminal": "^0.12.0",
"request-promise": "^4.2.6",
"sharp": "^0.28.2",
"slugify": "^1.5.3",
"socket.io": "^4.1.1",
"tiptap": "^1.32.2",
"tiptap-extensions": "^1.35.2",
"vue": "^2.6.12",
"vue-axios": "^3.2.4",
"vue-chartjs": "^3.5.1",
"vue-i18n": "^8.24.4",
"vue-mc": "^0.6.0",
"vue-perfect-scrollbar": "^0.1.0",
"vue-router": "^3.5.1",
"vue-uuid": "^2.0.2",
"whatsapp-web.js": "^1.16.7",
"xlsx": "^0.17.0"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"css-loader": "^5.2.4",
"html-webpack-plugin": "^5.3.1",
"script-ext-html-webpack-plugin": "^2.1.5",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0"
}
}