domain-watchdog/package.json

75 lines
2.3 KiB
JSON
Raw Permalink Normal View History

2024-07-19 02:04:41 +02:00
{
2024-07-22 14:45:21 +02:00
"name": "domain-watchdog",
2024-07-19 02:04:41 +02:00
"author": {
"name": "Maël Gangloff",
"email": "contact@maelgangloff.fr"
},
"homepage": "https://github.com/maelgangloff/domain-watchdog",
2024-07-22 14:45:21 +02:00
"readme": "https://github.com/maelgangloff/domain-watchdog",
"keywords": [
"Domain",
"RDAP",
"WHOIS"
],
"bugs": {
"url": "https://github.com/maelgangloff/domain-watchdog/issues"
},
2024-07-19 02:04:41 +02:00
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.0",
2024-07-19 02:28:05 +02:00
"@babel/preset-react": "^7.24.7",
2024-12-30 23:50:15 +01:00
"@eslint/js": "^9.17.0",
2024-07-31 02:10:55 +02:00
"@fontsource/noto-color-emoji": "^5.0.27",
2024-08-16 23:23:51 +02:00
"@hotwired/stimulus": "^3.0.0",
"@hotwired/turbo": "^7.1.1 || ^8.0",
"@symfony/stimulus-bridge": "^3.2.0",
"@symfony/ux-turbo": "file:vendor/symfony/ux-turbo/assets",
2024-07-22 14:45:21 +02:00
"@symfony/webpack-encore": "^4.0.0",
2024-07-23 18:37:59 +02:00
"@types/axios": "^0.14.0",
2024-08-16 03:54:48 +02:00
"@types/dagre": "^0.7.52",
2024-07-23 18:37:59 +02:00
"@types/jsonld": "^1.5.15",
2024-07-27 01:35:00 +02:00
"@types/punycode": "^2.1.4",
2024-07-22 14:45:21 +02:00
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
2024-07-30 06:13:31 +02:00
"@types/react-responsive": "^8.0.8",
2024-07-27 16:45:20 +02:00
"@types/vcf": "^2.0.7",
2024-08-16 03:54:48 +02:00
"@xyflow/react": "^12.1.0",
"antd": "^5.19.3",
2024-07-23 18:37:59 +02:00
"axios": "^1.7.2",
2024-07-19 02:04:41 +02:00
"core-js": "^3.23.0",
2024-08-16 03:54:48 +02:00
"dagre": "^0.8.5",
2024-12-30 23:50:15 +01:00
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"globals": "^15.14.0",
"html-loader": "^5.1.0",
2024-08-16 13:56:52 +02:00
"html-to-image": "^1.11.11",
2024-07-23 18:37:59 +02:00
"jsonld": "^8.3.2",
2024-07-27 01:35:00 +02:00
"punycode": "^2.3.1",
2024-07-22 14:45:21 +02:00
"react": "^18.3.1",
"react-dom": "^18.3.1",
2024-07-30 06:13:31 +02:00
"react-responsive": "^10.0.0",
2024-07-22 14:45:21 +02:00
"react-router-dom": "^6.25.1",
2024-07-19 02:04:41 +02:00
"regenerator-runtime": "^0.13.9",
"snarkdown": "^2.0.0",
2024-07-19 02:28:05 +02:00
"ts-loader": "^9.5.1",
2024-07-28 15:36:22 +02:00
"ttag": "^1.8.7",
2024-07-29 18:42:16 +02:00
"ttag-cli": "^1.10.12",
2024-07-19 02:28:05 +02:00
"typescript": "^5.5.3",
2024-12-30 23:50:15 +01:00
"typescript-eslint": "^8.19.0",
2024-07-27 16:45:20 +02:00
"vcf": "^2.1.2",
2024-07-19 02:04:41 +02:00
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-notifier": "^1.15.0"
},
"license": "AGPL-3.0-or-later",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
2024-07-28 18:34:08 +02:00
"build": "encore production --progress",
"ttag:po2json": "cd translations; for i in $(find . -name \"*.po\"); do ttag po2json $i > ../public/locales/$i.json; done; cd ..",
2025-11-13 15:51:27 +01:00
"ttag:extract": "ttag extract $(find assets -name '*.ts' -or -name '*.tsx' | sort) -o translations/translations.pot"
2024-07-19 02:28:05 +02:00
}
2024-07-19 02:04:41 +02:00
}