-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.37 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
{
"name": "reactive-cms",
"version": "1.0.2",
"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": [
"Reactive CMS"
],
"author": "https://www.artifactstudio.io",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.7",
"chart.js": "^2.8.0",
"connect-mongodb-session": "^2.1.1",
"ejs": "^2.6.1",
"fastify": "^2.11.0",
"fastify-auth": "^0.7.2",
"fastify-cookie": "^3.4.1",
"fastify-cors": "^3.0.1",
"fastify-csrf": "^1.0.2",
"fastify-formbody": "^3.1.0",
"fastify-helmet": "^3.0.2",
"fastify-multipart": "^1.0.4",
"fastify-session": "^3.2.0",
"fastify-static": "^2.5.1",
"fastify-url-data": "^2.4.0",
"fs": "0.0.1-security",
"mongoose": "^5.8.5",
"node-datetime": "^2.1.2",
"nodemailer": "^6.2.1",
"pm2": "^3.3.1",
"point-of-view": "^3.1.1",
"pump": "^3.0.0",
"sharp": "^0.23.4",
"slugify": "^1.3.4",
"socket.io": "^2.2.0",
"tiptap": "^1.20.1",
"tiptap-extensions": "^1.20.1",
"vue-chartjs": "^3.4.2",
"vue-i18n": "^8.11.2",
"vue-loader": "^15.6.4",
"vue-mc": "^0.6.0",
"vue-perfect-scrollbar": "^0.1.0",
"vue-uuid": "^1.1.1"
},
"devDependencies": {
"axios": "^0.19.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"css-loader": "^1.0.1",
"html-webpack-plugin": "^3.2.0",
"vue": "^2.6.11",
"vue-axios": "^2.1.5",
"vue-router": "^3.1.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}