sepia-search-motore-di-rice.../package.json

75 lines
2.2 KiB
JSON
Raw Normal View History

2020-02-13 11:49:03 +01:00
{
"name": "peertube-search-index",
"description": "",
"version": "0.0.1",
"private": true,
"licence": "GPLv3",
"engines": {
"node": ">=10.x"
},
"author": {
"name": "Florian Bigard",
"email": "chocobozzz@framasoft.org",
"url": "http://github.com/Chocobozzz"
},
"scripts": {
"tsc": "tsc",
"eslint": "eslint",
2022-02-23 16:46:16 +01:00
"lint": "eslint --ext .ts \"server/**/*.ts\" && cd client && npm run lint",
2021-08-13 08:15:01 +02:00
"build": "rm -rf dist && tsc && cp -r themes dist/ && cd ./client && npm run build",
2020-09-01 13:54:11 +02:00
"postinstall": "cd client/ && yarn install --pure-lockfile",
2020-09-01 13:51:44 +02:00
"start": "node dist/server.js",
2022-02-23 16:42:10 +01:00
"i18n:update": "cd client && git fetch weblate && git merge weblate/master && npm run gettext:extract && npm run gettext:compile"
2020-02-13 11:49:03 +01:00
},
"dependencies": {
2022-06-03 10:54:30 +02:00
"async": "^3.2.3",
2020-02-13 11:49:03 +01:00
"bluebird": "^3.5.3",
2022-06-03 10:54:30 +02:00
"body-parser": "^1.20.0",
"config": "^3.3.7",
2020-02-13 11:49:03 +01:00
"cors": "^2.8.5",
2022-06-03 10:54:30 +02:00
"express": "^4.18.1",
"express-validator": "^6.14.1",
2022-12-15 14:43:09 +01:00
"fs-extra": "^11.1.0",
2021-06-25 10:04:50 +02:00
"js-yaml": "^4.1.0",
2020-02-13 16:06:52 +01:00
"lodash": "^4.17.15",
"meilisearch": "^0.35.0",
2020-05-28 11:37:47 +02:00
"mkdirp": "^1.0.4",
2020-02-13 11:49:03 +01:00
"morgan": "^1.9.1",
2022-06-03 10:54:30 +02:00
"multer": "^1.4.5-lts.1",
"pg": "^8.7.3",
"pino": "^8.0.0",
2022-12-15 14:43:09 +01:00
"pino-pretty": "^9.1.1",
2020-02-13 11:49:03 +01:00
"reflect-metadata": "^0.1.13",
"request": "^2.88.0",
2021-06-25 10:04:50 +02:00
"retry": "^0.13.1",
2022-06-03 10:54:30 +02:00
"source-map-support": "^0.5.21"
2020-02-13 11:49:03 +01:00
},
"devDependencies": {
2022-12-20 15:18:43 +01:00
"@peertube/peertube-types": "^5.0.0",
2022-06-03 10:54:30 +02:00
"@types/async": "^3.2.13",
"@types/body-parser": "^1.19.2",
2022-12-15 14:43:09 +01:00
"@types/config": "^3.3.0",
2022-06-03 10:54:30 +02:00
"@types/express": "^4.17.13",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.182",
"@types/mkdirp": "^1.0.2",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
2022-12-15 14:43:09 +01:00
"@types/node": "^18.11.15",
2022-06-03 10:54:30 +02:00
"@types/pino": "^7.0.5",
"@types/request": "^2.48.8",
"@types/validator": "^13.7.2",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
2022-12-15 14:43:09 +01:00
"eslint-config-standard-with-typescript": "^24.0.0",
2022-06-03 10:54:30 +02:00
"eslint-plugin-import": "^2.26.0",
2022-12-16 14:44:54 +01:00
"eslint-plugin-n": "^15.6.0",
2020-02-13 11:49:03 +01:00
"eslint-plugin-node": "^11.0.0",
2022-06-03 10:54:30 +02:00
"eslint-plugin-promise": "^6.0.0",
2021-06-25 10:04:50 +02:00
"eslint-plugin-standard": "^5.0.0",
2022-06-03 10:54:30 +02:00
"typescript": "^4.7.2"
2020-02-13 11:49:03 +01:00
}
}