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",
2021-05-28 14:51:21 +02:00
"version": "2.4.2",
"description": "ISP mail provider manager with mysql and integrated LDAP server",
"repository": "https://eternae.ink/ashpie/rainbox.email",
2020-04-23 14:55:48 +02:00
"author": "Alice Gaudon <alice@gaudon.pro>",
2021-01-25 18:04:11 +01:00
"main": "dist/main.js",
"license": "AGPL-3.0-only",
2020-04-23 18:07:39 +02:00
"scripts": {
"test": "jest --verbose --runInBand",
"clean": "node scripts/clean.js",
"prepare-sources": "node scripts/prepare-sources.js",
2020-11-03 17:53:59 +01:00
"compile": "yarn clean && tsc",
"build": "yarn prepare-sources && yarn compile && webpack --mode production",
"dev": "yarn prepare-sources && 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",
"lint": "eslint ."
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",
"@types/config": "^0.0.38",
2020-04-23 18:07:39 +02:00
"@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",
2021-04-30 11:55:37 +02:00
"@types/node": "^15.0.1",
"@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",
2021-03-01 14:05:59 +01:00
"concurrently": "^6.0.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.0",
2020-04-23 18:07:39 +02:00
"imagemin-gifsicle": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"imagemin-pngquant": "^9.0.0",
2021-03-30 12:39:40 +02:00
"imagemin-svgo": "^9.0.0",
2020-04-23 18:07:39 +02:00
"img-loader": "^3.0.1",
"jest": "^26.1.0",
2021-01-25 11:43:36 +01:00
"maildev": "^1.1.0",
2020-11-02 18:17:55 +01:00
"mini-css-extract-plugin": "^1.2.1",
2020-04-23 18:07:39 +02:00
"nodemon": "^2.0.3",
2021-04-30 11:54:50 +02:00
"sass": "^1.32.12",
2021-03-01 14:05:59 +01:00
"sass-loader": "^11.0.1",
2020-11-02 18:17:55 +01:00
"terser-webpack-plugin": "^5.0.3",
"ts-jest": "^26.1.1",
2021-04-22 12:34:14 +02:00
"ts-loader": "^9.1.0",
"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",
"swaf": "^0.23.0"
2020-04-23 14:55:48 +02:00
}
}