rainbox.email/package.json

70 lines
2.3 KiB
JSON
Raw Normal View History

2020-04-23 14:55:48 +02:00
{
"name": "rainbox.email",
2020-07-30 11:59:45 +02:00
"version": "1.1.1",
"description": "ISP mail provider manager with mysql and integrated LDAP server",
"repository": "https://gitlab.com/ArisuOngaku/rainbox.email",
2020-04-23 14:55:48 +02:00
"author": "Alice Gaudon <alice@gaudon.pro>",
2020-04-23 18:07:39 +02:00
"main": "dist/main.js",
"license": "AGPL-3.0-only",
2020-04-23 18:07:39 +02:00
"scripts": {
"dist-webpack": "webpack --mode production",
2020-10-05 13:38:03 +02:00
"clean": "(test ! -d dist || rm -r dist)",
"compile": "yarn clean && tsc && mv dist/src/* dist/",
"build": "yarn compile && yarn dist-webpack",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"dev": "concurrently -k -n \"Typescript,Node,Webpack,Maildev\" -p \"[{name}]\" -c \"blue,green,red,yellow\" \"tsc --watch\" \"nodemon\" \"webpack --watch --mode development\" \"maildev\"",
"start": "yarn build && node dist/main.js",
"test": "jest --verbose --runInBand"
2020-04-23 18:07:39 +02:00
},
2020-04-23 14:55:48 +02:00
"devDependencies": {
2020-04-23 18:07:39 +02:00
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
2020-09-05 17:36:08 +02:00
"@fortawesome/fontawesome-free": "^5.14.0",
2020-11-02 18:45:23 +01:00
"@types/argon2": "^0.15.0",
2020-04-23 18:07:39 +02:00
"@types/config": "^0.0.36",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
2020-09-23 13:30:48 +02:00
"@types/feather-icons": "^4.7.0",
2020-07-06 11:06:50 +02:00
"@types/formidable": "^1.0.31",
"@types/jest": "^26.0.4",
"@types/ldapjs": "^1.0.7",
"@types/mysql": "^2.15.15",
"@types/node": "^14.6.3",
"@types/nodemailer": "^6.4.0",
"@types/nunjucks": "^3.1.3",
"@types/ws": "^7.2.6",
2020-10-05 13:38:03 +02:00
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
2020-04-23 18:07:39 +02:00
"babel-loader": "^8.1.0",
"concurrently": "^5.1.0",
2020-11-02 18:17:55 +01:00
"css-loader": "^5.0.0",
2020-10-05 13:38:03 +02:00
"eslint": "^7.10.0",
2020-04-23 18:07:39 +02:00
"feather-icons": "^4.28.0",
"file-loader": "^6.0.0",
"imagemin": "^7.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.0",
"imagemin-svgo": "^8.0.0",
2020-04-23 18:07:39 +02:00
"img-loader": "^3.0.1",
"jest": "^26.1.0",
2020-11-02 18:17:55 +01:00
"mini-css-extract-plugin": "^1.2.1",
"node-sass": "^5.0.0",
2020-04-23 18:07:39 +02:00
"nodemon": "^2.0.3",
"sass-loader": "^10.0.1",
2020-11-02 18:17:55 +01:00
"terser-webpack-plugin": "^5.0.3",
"ts-jest": "^26.1.1",
2020-09-23 13:30:48 +02:00
"ts-loader": "^8.0.4",
"typescript": "^4.0.2",
2020-11-02 18:17:55 +01:00
"webpack": "^5.3.2",
"webpack-cli": "^4.1.0"
2020-04-23 14:58:14 +02:00
},
"dependencies": {
2020-11-02 18:45:23 +01:00
"argon2": "^0.27.0",
2020-04-23 18:07:39 +02:00
"config": "^3.3.1",
"express": "^4.17.1",
2020-11-02 18:45:23 +01:00
"ldapjs": "^2.0.0",
"wms-core": "^0.22.0"
2020-04-23 14:55:48 +02:00
}
}