2020-07-17 01:03:38 -07:00
|
|
|
{
|
|
|
|
|
"name": "umami",
|
2026-02-05 20:29:40 -08:00
|
|
|
"version": "3.1.0",
|
2025-04-25 14:18:23 -07:00
|
|
|
"description": "A modern, privacy-focused alternative to Google Analytics.",
|
2024-02-29 14:14:29 -08:00
|
|
|
"author": "Umami Software, Inc. <hello@umami.is>",
|
2020-07-17 01:03:38 -07:00
|
|
|
"license": "MIT",
|
2021-02-26 22:46:44 -08:00
|
|
|
"homepage": "https://umami.is",
|
2020-07-23 19:56:55 -07:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2022-07-16 22:23:43 -07:00
|
|
|
"url": "https://github.com/umami-software/umami.git"
|
2020-07-23 19:56:55 -07:00
|
|
|
},
|
2025-05-14 15:29:03 -07:00
|
|
|
"type": "module",
|
2020-07-17 01:03:38 -07:00
|
|
|
"scripts": {
|
2026-02-26 10:29:24 -08:00
|
|
|
"dev": "dotenv next dev --turbo",
|
2026-02-06 15:49:59 -08:00
|
|
|
"build": "npm-run-all check-env build-db check-db build-tracker build-recorder build-geo build-app",
|
2022-09-09 22:33:39 +08:00
|
|
|
"start": "next start",
|
2025-08-15 12:29:33 -07:00
|
|
|
"build-docker": "npm-run-all build-db build-tracker build-geo build-app",
|
2025-10-06 02:12:57 -07:00
|
|
|
"start-docker": "npm-run-all check-db update-tracker start-server",
|
2022-06-27 10:34:03 -07:00
|
|
|
"start-env": "node scripts/start-env.js",
|
2022-06-19 00:07:01 -07:00
|
|
|
"start-server": "node server.js",
|
2025-10-01 00:00:40 -07:00
|
|
|
"build-app": "next build --turbo",
|
2025-05-26 23:13:15 -07:00
|
|
|
"build-icons": "svgr ./src/assets --out-dir src/components/svg --typescript",
|
2026-02-15 19:28:25 -08:00
|
|
|
"build-components": "node scripts/bump-components.js && tsup",
|
2025-06-06 19:44:09 -07:00
|
|
|
"build-tracker": "rollup -c rollup.tracker.config.js",
|
2026-02-06 15:49:59 -08:00
|
|
|
"build-recorder": "rollup -c rollup.recorder.config.js",
|
2025-06-06 19:44:09 -07:00
|
|
|
"build-prisma-client": "node scripts/build-prisma-client.js",
|
2026-02-07 01:48:32 -08:00
|
|
|
"build-lang": "npm-run-all download-country-names download-language-names",
|
2020-09-26 20:21:16 -07:00
|
|
|
"build-geo": "node scripts/build-geo.js",
|
2025-08-15 12:29:33 -07:00
|
|
|
"build-db": "npm-run-all build-db-client build-prisma-client",
|
2022-06-19 00:07:01 -07:00
|
|
|
"build-db-schema": "prisma db pull",
|
|
|
|
|
"build-db-client": "prisma generate",
|
2022-08-09 13:09:41 -07:00
|
|
|
"update-tracker": "node scripts/update-tracker.js",
|
2022-06-19 00:07:01 -07:00
|
|
|
"update-db": "prisma migrate deploy",
|
2022-06-22 01:50:33 -07:00
|
|
|
"check-db": "node scripts/check-db.js",
|
2023-05-16 20:41:20 -07:00
|
|
|
"check-env": "node scripts/check-env.js",
|
2026-03-05 13:31:00 -08:00
|
|
|
"check-missing-messages": "node scripts/check-missing-messages.js",
|
2022-06-19 00:07:01 -07:00
|
|
|
"copy-db-files": "node scripts/copy-db-files.js",
|
2020-10-03 11:21:44 -07:00
|
|
|
"download-country-names": "node scripts/download-country-names.js",
|
2021-12-19 23:25:29 -08:00
|
|
|
"download-language-names": "node scripts/download-language-names.js",
|
2022-01-06 00:49:07 -08:00
|
|
|
"change-password": "node scripts/change-password.js",
|
2024-02-27 21:41:34 -08:00
|
|
|
"postbuild": "node scripts/postbuild.js",
|
2024-03-01 13:25:32 -08:00
|
|
|
"test": "jest",
|
2024-02-28 16:29:35 -08:00
|
|
|
"cypress-open": "cypress open cypress run",
|
2025-11-20 20:56:16 -08:00
|
|
|
"cypress-run": "cypress run cypress run",
|
2025-12-03 00:03:56 -08:00
|
|
|
"seed-data": "tsx scripts/seed-data.ts",
|
2025-11-20 20:56:16 -08:00
|
|
|
"lint": "biome lint .",
|
|
|
|
|
"format": "biome format --write .",
|
2025-11-22 22:42:42 -08:00
|
|
|
"check": "biome check --write"
|
2020-07-17 01:03:38 -07:00
|
|
|
},
|
2022-12-26 20:50:55 -08:00
|
|
|
"cacheDirectories": [
|
|
|
|
|
".next/cache"
|
|
|
|
|
],
|
2020-07-17 01:03:38 -07:00
|
|
|
"dependencies": {
|
2026-02-16 18:34:50 -08:00
|
|
|
"@clickhouse/client": "^1.17.0",
|
2024-08-12 23:54:21 -07:00
|
|
|
"@date-fns/utc": "^1.2.0",
|
2026-02-05 20:29:40 -08:00
|
|
|
"@dicebear/collection": "^9.3.1",
|
|
|
|
|
"@dicebear/core": "^9.3.1",
|
2025-02-03 11:57:16 -08:00
|
|
|
"@hello-pangea/dnd": "^17.0.0",
|
2026-02-05 20:29:40 -08:00
|
|
|
"@prisma/adapter-pg": "^7.3.0",
|
|
|
|
|
"@prisma/client": "^7.3.0",
|
2025-12-05 16:49:08 -08:00
|
|
|
"@prisma/extension-read-replicas": "^0.5.0",
|
2025-09-30 16:11:21 -07:00
|
|
|
"@react-spring/web": "^10.0.3",
|
2025-05-09 22:06:39 -07:00
|
|
|
"@svgr/cli": "^8.1.0",
|
2026-02-16 18:34:50 -08:00
|
|
|
"@tanstack/react-query": "^5.90.21",
|
2026-02-14 22:55:36 -08:00
|
|
|
"@umami/react-zen": "^0.245.0",
|
2025-07-29 19:15:55 -07:00
|
|
|
"bcryptjs": "^3.0.2",
|
2025-09-30 16:11:21 -07:00
|
|
|
"chalk": "^5.6.2",
|
2025-10-16 23:59:18 -07:00
|
|
|
"chart.js": "^4.5.1",
|
2023-03-14 22:37:50 -07:00
|
|
|
"chartjs-adapter-date-fns": "^3.0.0",
|
2021-04-24 21:27:24 -07:00
|
|
|
"classnames": "^2.3.1",
|
2022-01-14 00:39:27 -08:00
|
|
|
"colord": "^2.9.2",
|
2026-02-05 20:29:40 -08:00
|
|
|
"cors": "^2.8.6",
|
2022-06-19 00:07:01 -07:00
|
|
|
"cross-spawn": "^7.0.3",
|
2021-07-25 21:36:07 -07:00
|
|
|
"date-fns": "^2.23.0",
|
2021-07-12 00:39:12 -07:00
|
|
|
"date-fns-tz": "^1.1.4",
|
2025-09-30 16:11:21 -07:00
|
|
|
"debug": "^4.4.3",
|
2022-04-04 14:36:42 -07:00
|
|
|
"del": "^6.0.0",
|
2020-10-13 18:24:27 -07:00
|
|
|
"detect-browser": "^5.2.0",
|
2026-02-16 18:34:50 -08:00
|
|
|
"dotenv": "^17.3.1",
|
2025-10-16 23:59:18 -07:00
|
|
|
"esbuild": "^0.25.11",
|
2026-01-14 12:53:13 -08:00
|
|
|
"fs-extra": "^11.3.3",
|
2025-10-31 00:13:02 -07:00
|
|
|
"immer": "^10.2.0",
|
2025-12-03 15:11:40 -08:00
|
|
|
"ipaddr.js": "^2.3.0",
|
2022-04-04 14:36:42 -07:00
|
|
|
"is-ci": "^3.0.1",
|
|
|
|
|
"is-docker": "^3.0.0",
|
2025-07-29 19:15:55 -07:00
|
|
|
"is-localhost-ip": "^2.0.0",
|
2026-02-16 18:34:50 -08:00
|
|
|
"isbot": "^5.1.35",
|
2025-12-05 16:49:08 -08:00
|
|
|
"jsonwebtoken": "^9.0.3",
|
2025-07-21 10:58:58 -07:00
|
|
|
"jszip": "^3.10.1",
|
2022-08-01 00:28:38 -07:00
|
|
|
"kafkajs": "^2.1.0",
|
2025-09-10 17:16:04 -07:00
|
|
|
"lucide-react": "^0.543.0",
|
2026-02-05 20:29:40 -08:00
|
|
|
"maxmind": "^5.0.5",
|
|
|
|
|
"next": "^16.1.6",
|
2026-02-16 18:34:50 -08:00
|
|
|
"next-intl": "^4.8.3",
|
2022-07-16 22:28:05 -07:00
|
|
|
"node-fetch": "^3.2.8",
|
2022-04-04 03:43:29 -07:00
|
|
|
"npm-run-all": "^4.1.5",
|
2025-07-22 00:24:37 -07:00
|
|
|
"papaparse": "^5.5.3",
|
2026-02-05 20:29:40 -08:00
|
|
|
"pg": "^8.18.0",
|
|
|
|
|
"prisma": "^7.3.0",
|
2025-07-29 19:15:55 -07:00
|
|
|
"pure-rand": "^7.0.1",
|
2026-02-05 20:29:40 -08:00
|
|
|
"react": "^19.2.4",
|
|
|
|
|
"react-dom": "^19.2.4",
|
2023-04-25 14:41:54 -07:00
|
|
|
"react-error-boundary": "^4.0.4",
|
2026-02-16 18:34:50 -08:00
|
|
|
"react-resizable-panels": "^4.6.4",
|
2020-11-01 22:01:30 -08:00
|
|
|
"react-simple-maps": "^2.3.0",
|
2021-03-26 17:08:58 -07:00
|
|
|
"react-use-measure": "^2.0.4",
|
2020-11-01 22:01:30 -08:00
|
|
|
"react-window": "^1.8.6",
|
2026-02-18 09:23:27 -08:00
|
|
|
"redis": "^4.5.1",
|
2022-08-23 12:12:28 -07:00
|
|
|
"request-ip": "^3.3.0",
|
2026-02-06 15:49:59 -08:00
|
|
|
"rrweb": "2.0.0-alpha.4",
|
|
|
|
|
"rrweb-player": "1.0.0-alpha.4",
|
2026-02-05 20:29:40 -08:00
|
|
|
"semver": "^7.7.4",
|
2025-01-08 17:00:59 -08:00
|
|
|
"serialize-error": "^12.0.0",
|
2020-08-22 19:05:07 -07:00
|
|
|
"thenby": "^1.3.4",
|
2026-02-05 20:29:40 -08:00
|
|
|
"ua-parser-js": "^2.0.9",
|
2025-12-05 16:49:08 -08:00
|
|
|
"uuid": "^13.0.0",
|
2026-02-05 20:29:40 -08:00
|
|
|
"zod": "^4.3.6",
|
|
|
|
|
"zustand": "^5.0.11"
|
2020-07-17 01:03:38 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-02-16 18:34:50 -08:00
|
|
|
"@biomejs/biome": "^2.4.2",
|
|
|
|
|
"@netlify/plugin-nextjs": "^5.15.8",
|
2023-04-21 12:43:37 -07:00
|
|
|
"@rollup/plugin-alias": "^5.0.0",
|
2023-08-21 02:06:09 -07:00
|
|
|
"@rollup/plugin-commonjs": "^25.0.4",
|
2023-04-21 12:43:37 -07:00
|
|
|
"@rollup/plugin-json": "^6.0.0",
|
2023-08-21 02:06:09 -07:00
|
|
|
"@rollup/plugin-node-resolve": "^15.2.0",
|
|
|
|
|
"@rollup/plugin-replace": "^5.0.2",
|
2025-05-01 00:35:10 -07:00
|
|
|
"@rollup/plugin-terser": "^0.4.4",
|
2025-10-31 00:13:02 -07:00
|
|
|
"@rollup/plugin-typescript": "^12.3.0",
|
2025-08-28 23:29:42 -07:00
|
|
|
"@types/jest": "^30.0.0",
|
2026-02-16 18:34:50 -08:00
|
|
|
"@types/node": "^24.10.13",
|
|
|
|
|
"@types/react": "^19.2.14",
|
2025-10-16 23:59:18 -07:00
|
|
|
"@types/react-dom": "^19.2.2",
|
2025-06-12 23:07:25 -07:00
|
|
|
"babel-plugin-react-compiler": "19.1.0-rc.2",
|
2025-09-30 16:11:21 -07:00
|
|
|
"cross-env": "^10.1.0",
|
2024-02-27 21:41:34 -08:00
|
|
|
"cypress": "^13.6.6",
|
2026-02-07 19:42:19 -08:00
|
|
|
"dotenv-cli": "^11.0.0",
|
2024-03-01 13:25:32 -08:00
|
|
|
"jest": "^29.7.0",
|
2025-06-20 09:26:48 -07:00
|
|
|
"postcss": "^8.5.6",
|
2020-12-02 19:27:57 -08:00
|
|
|
"postcss-flexbugs-fixes": "^5.0.2",
|
2023-01-18 15:05:39 -08:00
|
|
|
"postcss-import": "^15.1.0",
|
|
|
|
|
"postcss-preset-env": "7.8.3",
|
2022-03-31 09:55:42 -07:00
|
|
|
"prompts": "2.4.2",
|
2026-02-05 20:29:40 -08:00
|
|
|
"rollup": "^4.57.1",
|
2023-08-21 02:06:09 -07:00
|
|
|
"rollup-plugin-copy": "^3.4.0",
|
2026-01-14 12:53:13 -08:00
|
|
|
"rollup-plugin-delete": "^3.0.2",
|
2025-12-03 15:11:40 -08:00
|
|
|
"rollup-plugin-dts": "^6.3.0",
|
2025-09-30 16:11:21 -07:00
|
|
|
"rollup-plugin-node-externals": "^8.1.1",
|
2025-09-01 15:59:06 -07:00
|
|
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
2023-04-21 12:43:37 -07:00
|
|
|
"rollup-plugin-postcss": "^4.0.2",
|
2023-07-10 09:54:51 -07:00
|
|
|
"stylelint": "^15.10.1",
|
2026-02-16 18:34:50 -08:00
|
|
|
"stylelint-config-css-modules": "^4.6.0",
|
2021-10-27 02:05:39 -07:00
|
|
|
"stylelint-config-prettier": "^9.0.3",
|
2024-02-29 21:18:34 -08:00
|
|
|
"stylelint-config-recommended": "^14.0.0",
|
2026-02-16 18:34:50 -08:00
|
|
|
"tar": "^7.5.9",
|
2025-12-03 15:11:40 -08:00
|
|
|
"ts-jest": "^29.4.6",
|
2026-02-07 23:56:06 -08:00
|
|
|
"ts-morph": "^27.0.2",
|
2023-03-23 14:01:15 -07:00
|
|
|
"ts-node": "^10.9.1",
|
2025-09-01 15:59:06 -07:00
|
|
|
"tsup": "^8.5.0",
|
2025-12-02 13:43:59 +03:00
|
|
|
"tsx": "^4.19.0",
|
2025-09-30 16:11:21 -07:00
|
|
|
"typescript": "^5.9.3"
|
2022-12-26 20:50:55 -08:00
|
|
|
}
|
2020-07-17 01:03:38 -07:00
|
|
|
}
|