umami/package.json

107 lines
3.2 KiB
JSON
Raw Normal View History

2020-07-17 10:03:38 +02:00
{
"name": "umami",
"version": "0.19.0",
2020-08-18 01:46:13 +02:00
"description": "A simple, fast, website analytics alternative to Google Analytics. ",
2020-07-18 04:15:29 +02:00
"author": "Mike Cao <mike@mikecao.com>",
2020-07-17 10:03:38 +02:00
"license": "MIT",
2020-07-24 04:56:55 +02:00
"homepage": "https://github.com/mikecao/umami",
"repository": {
"type": "git",
"url": "https://github.com/mikecao/umami.git"
},
2020-07-17 10:03:38 +02:00
"scripts": {
2020-08-18 01:46:13 +02:00
"dev": "next dev",
2020-08-23 07:03:39 +02:00
"build": "npm-run-all build-tracker copy-db-schema build-db-client build-app",
2020-07-17 10:03:38 +02:00
"start": "next start",
2020-08-21 10:45:44 +02:00
"build-app": "next build",
2020-07-25 02:00:56 +02:00
"build-tracker": "rollup -c rollup.tracker.config.js",
2020-08-21 10:45:44 +02:00
"copy-db-schema": "node scripts/copy-db-schema.js",
"build-db-schema": "dotenv prisma introspect",
2020-08-21 11:00:55 +02:00
"build-db-client": "dotenv prisma generate",
"build-mysql-schema": "dotenv prisma introspect -- --schema=./prisma/schema.mysql.prisma",
"build-mysql-client": "dotenv prisma generate -- --schema=./prisma/schema.mysql.prisma",
"build-postgresql-schema": "dotenv prisma introspect -- --schema=./prisma/schema.postgresql.prisma",
"build-postgresql-client": "dotenv prisma generate -- --schema=./prisma/schema.postgresql.prisma"
2020-07-17 10:03:38 +02:00
},
"lint-staged": {
"**/*.js": [
"prettier --write",
"eslint"
2020-07-17 10:03:38 +02:00
],
"**/*.css": [
"stylelint --fix",
"prettier --write",
"eslint"
2020-07-17 10:03:38 +02:00
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
2020-08-24 04:30:10 +02:00
"@prisma/client": "2.5.1",
2020-08-05 07:45:05 +02:00
"@reduxjs/toolkit": "^1.4.0",
2020-07-23 00:46:05 +02:00
"bcrypt": "^5.0.0",
2020-07-18 12:33:33 +02:00
"chart.js": "^2.9.3",
2020-07-17 10:03:38 +02:00
"classnames": "^2.2.6",
2020-07-23 00:46:05 +02:00
"cookie": "^0.4.1",
"cors": "^2.8.5",
2020-08-28 08:57:53 +02:00
"date-fns": "^2.16.0",
2020-07-30 09:06:29 +02:00
"date-fns-tz": "^1.0.10",
2020-07-17 10:03:38 +02:00
"detect-browser": "^5.1.1",
"dotenv": "^8.2.0",
2020-07-24 04:56:55 +02:00
"formik": "^2.1.5",
2020-07-18 09:25:29 +02:00
"geolite2-redist": "^1.0.7",
"is-localhost-ip": "^1.4.0",
"jose": "^1.28.0",
2020-07-30 09:09:55 +02:00
"maxmind": "^4.1.4",
2020-07-28 08:52:14 +02:00
"moment-timezone": "^0.5.31",
2020-08-15 10:17:15 +02:00
"next": "^9.5.2",
2020-07-18 04:15:29 +02:00
"promise-polyfill": "^8.1.3",
2020-08-15 10:17:15 +02:00
"react": "^16.13.1",
"react-dom": "^16.13.1",
2020-08-05 07:45:05 +02:00
"react-redux": "^7.2.1",
2020-08-01 12:34:56 +02:00
"react-simple-maps": "^2.1.2",
2020-07-30 05:09:41 +02:00
"react-spring": "^8.0.27",
2020-08-28 08:57:53 +02:00
"react-tooltip": "^4.2.9",
2020-08-10 00:13:38 +02:00
"react-window": "^1.8.5",
2020-08-05 07:45:05 +02:00
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
2020-07-17 10:03:38 +02:00
"request-ip": "^2.1.3",
"thenby": "^1.3.4",
2020-08-01 12:34:56 +02:00
"tinycolor2": "^1.4.1",
2020-07-18 04:15:29 +02:00
"unfetch": "^4.1.0",
"uuid": "^8.3.0"
2020-07-17 10:03:38 +02:00
},
"devDependencies": {
2020-08-24 04:30:10 +02:00
"@prisma/cli": "2.5.1",
2020-07-18 04:15:29 +02:00
"@rollup/plugin-buble": "^0.21.3",
2020-08-24 04:30:10 +02:00
"@rollup/plugin-node-resolve": "^9.0.0",
2020-07-18 04:15:29 +02:00
"@rollup/plugin-replace": "^2.3.3",
2020-07-17 10:03:38 +02:00
"@svgr/webpack": "^5.4.0",
2020-07-25 02:00:56 +02:00
"cross-env": "^7.0.2",
"dotenv-cli": "^3.2.0",
2020-08-24 04:30:10 +02:00
"eslint": "^7.7.0",
2020-07-17 10:03:38 +02:00
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
2020-08-24 04:30:10 +02:00
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
2020-07-17 10:03:38 +02:00
"husky": "^4.2.5",
2020-08-28 08:57:53 +02:00
"lint-staged": "^10.2.13",
2020-08-21 10:45:44 +02:00
"npm-run-all": "^4.1.5",
2020-07-17 10:03:38 +02:00
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
2020-08-28 08:57:53 +02:00
"prettier": "^2.1.1",
2020-07-30 09:09:55 +02:00
"prettier-eslint": "^11.0.0",
2020-08-28 08:57:53 +02:00
"rollup": "^2.26.6",
2020-07-25 02:00:56 +02:00
"rollup-plugin-hashbang": "^2.2.2",
"rollup-plugin-terser": "^7.0.0",
2020-07-17 10:03:38 +02:00
"stylelint": "^13.6.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0"
}
}