83 lines
2.2 KiB
JSON
83 lines
2.2 KiB
JSON
{
|
|
"name": "umami",
|
|
"version": "1.17.0",
|
|
"description": "A simple, fast, website analytics alternative to Google Analytics. ",
|
|
"author": "Mike Cao <mike@mikecao.com>",
|
|
"license": "MIT",
|
|
"homepage": "https://umami.is",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mikecao/umami.git"
|
|
},
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"clean": "rimraf .next",
|
|
"build": "npm-run-all clean build-tracker build-geo build-db build-app",
|
|
"start": "next start",
|
|
"start-env": "node -r dotenv/config scripts/start-env.js",
|
|
"build-app": "next build",
|
|
"build-tracker": "microbundle tracker/index.js -o public/umami.js --no-sourcemap -f cjs",
|
|
"build-db": "npm-run-all build-db-client",
|
|
"build-geo": "node scripts/build-geo.js",
|
|
"build-db-schema": "dotenv prisma introspect",
|
|
"build-db-client": "dotenv prisma generate"
|
|
},
|
|
"dependencies": {
|
|
"@prisma/client": "2.21.2",
|
|
"@reduxjs/toolkit": "1.5.1",
|
|
"bcryptjs": "2.4.3",
|
|
"chalk": "4.1.1",
|
|
"chart.js": "2.9.4",
|
|
"classnames": "2.3.1",
|
|
"cookie": "0.4.1",
|
|
"cors": "2.8.5",
|
|
"date-fns": "2.16.1",
|
|
"date-fns-tz": "1.0.12",
|
|
"detect-browser": "5.2.0",
|
|
"dotenv": "8.2.0",
|
|
"formik": "2.2.6",
|
|
"immer": "8.0.1",
|
|
"ipaddr.js": "2.0.0",
|
|
"is-localhost-ip": "1.4.0",
|
|
"isbot": "3.0.26",
|
|
"jose": "2.0.5",
|
|
"maxmind": "4.3.1",
|
|
"moment-timezone": "0.5.33",
|
|
"next": "10.1.3",
|
|
"prompts": "2.4.1",
|
|
"prop-types": "15.7.2",
|
|
"react": "17.0.2",
|
|
"react-dom": "17.0.2",
|
|
"react-intl": "5.16.0",
|
|
"react-redux": "7.2.4",
|
|
"react-simple-maps": "2.3.0",
|
|
"react-spring": "8.0.27",
|
|
"react-tooltip": "4.2.18",
|
|
"react-use-measure": "2.0.4",
|
|
"react-window": "1.8.6",
|
|
"redux": "4.1.0",
|
|
"redux-thunk": "2.3.0",
|
|
"request-ip": "2.1.3",
|
|
"thenby": "1.3.4",
|
|
"timezone-support": "2.0.2",
|
|
"tinycolor2": "1.4.2",
|
|
"uuid": "8.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@formatjs/cli": "2.13.16",
|
|
"@svgr/webpack": "5.5.0",
|
|
"cross-env": "7.0.3",
|
|
"dotenv-cli": "4.0.0",
|
|
"extract-react-intl-messages": "4.1.1",
|
|
"microbundle": "0.13.0",
|
|
"npm-run-all": "4.1.5",
|
|
"postcss-flexbugs-fixes": "5.0.2",
|
|
"postcss-import": "13.0.0",
|
|
"postcss-preset-env": "6.7.0",
|
|
"prettier": "2.2.1",
|
|
"prisma": "2.21.2",
|
|
"rimraf": "3.0.2",
|
|
"tar": "6.0.5"
|
|
}
|
|
}
|