-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.47 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
{
"name": "mdos-web",
"version": "1.0.5",
"description": "The frontend of MDoS exposed to the world - includes user, rights and access management",
"main": "main.js",
"scripts": {
"start": "export NODE_ENV=production && node .",
"dev": "nodemon . & npm run watch:css & npm run watch:js",
"build": "npm run build:css && npm run build:js",
"build:css": "sass public/css/mdos.scss public/css/mdos.css",
"build:js": "webpack --config webpack.config.js",
"watch:css": "sass --watch public/css",
"watch:js": "webpack --config webpack.config.js --watch",
"install": "npm run build && export NODE_ENV=production && pm2 start main.js --log /var/log/mdos-web/production --name mdos && pm2 save",
"remove": "pm2 stop mdos && pm2 delete mdos && pm2 save",
"usermanager": "node bin/usermanager.js"
},
"repository": {
"type": "git",
"url": "github.com:maschinendeck/mdos-web.git"
},
"author": "Michael Ochmann <miko@maschinendeck.org>",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"luxon": "^3.4.4",
"mqtt": "^4.2.8",
"nodemailer": "^6.6.5",
"sequelize": "^6.6.5",
"serialport": "^9.2.3",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"inquirer": "^8.1.5",
"nodemon": "^2.0.12",
"sass": "^1.49.8",
"webpack": "^5.54.0",
"webpack-cli": "^4.8.0"
}
}