ily.li/package.json

58 lines
1.8 KiB
JSON
Raw Normal View History

2020-04-23 14:55:48 +02:00
{
2020-06-14 15:15:15 +02:00
"name": "ily.li",
"version": "0.5.1",
2020-06-14 15:15:15 +02:00
"description": "Self-hosted file pusher",
"repository": "https://gitlab.com/ArisuOngaku/ily.li",
2020-04-23 14:55:48 +02:00
"author": "Alice Gaudon <alice@gaudon.pro>",
2020-09-01 11:18:20 +02:00
"license": "GPL-3.0-only",
2020-04-23 18:07:39 +02:00
"main": "dist/main.js",
"scripts": {
"test": "jest --verbose --runInBand",
"dist-webpack": "webpack --mode production",
"dist": "tsc && npm run dist-webpack",
"dev": "concurrently -k -n \"Typescript,Node,Webpack,Maildev\" -p \"[{name}]\" -c \"blue,green,red,yellow\" \"tsc --watch\" \"nodemon\" \"webpack --watch --mode development\" \"maildev\"",
2020-04-23 18:07:39 +02:00
"start": "yarn dist && node dist/main.js"
},
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",
"@types/config": "^0.0.36",
"@types/express": "^4.17.6",
"@types/express-session": "^1.17.0",
2020-06-14 21:23:57 +02:00
"@types/formidable": "^1.0.31",
"@types/jest": "^26.0.4",
"@types/mysql": "^2.15.15",
2020-08-11 17:54:15 +02:00
"@types/node": "^14.0.27",
"@types/nodemailer": "^6.4.0",
"@types/nunjucks": "^3.1.3",
"@types/ws": "^7.2.6",
2020-04-23 18:07:39 +02:00
"babel-loader": "^8.1.0",
"concurrently": "^5.1.0",
2020-08-11 17:54:15 +02:00
"css-loader": "^4.2.1",
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-09-01 11:12:04 +02:00
"mini-css-extract-plugin": "^0.11.0",
2020-04-23 18:07:39 +02:00
"node-sass": "^4.14.0",
"nodemon": "^2.0.3",
2020-09-01 11:12:04 +02:00
"sass-loader": "^10.0.1",
"ts-jest": "^26.1.1",
2020-09-01 11:12:04 +02:00
"typescript": "^4.0.2",
2020-04-23 18:07:39 +02:00
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
2020-09-01 11:12:04 +02:00
"wms-core": "^0.21.4"
2020-04-23 14:58:14 +02:00
},
"dependencies": {
2020-04-23 18:07:39 +02:00
"config": "^3.3.1",
2020-06-14 13:01:52 +02:00
"express": "^4.17.1",
2020-06-14 21:23:57 +02:00
"formidable": "^1.2.2"
2020-04-23 14:55:48 +02:00
}
}