umami/package.json

109 lines
2.9 KiB
JSON
Raw Normal View History

2020-07-17 10:03:38 +02:00
{
"name": "umami",
2020-07-24 19:56:45 +02:00
"version": "0.2.0",
2020-07-24 04:56:55 +02:00
"description": "Deliciously simple website stats",
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"
},
"main": "index.js",
"bin": {
2020-07-25 02:00:56 +02:00
"umami": "cli.js"
},
2020-07-17 10:03:38 +02:00
"scripts": {
2020-07-25 02:00:56 +02:00
"dev": "cross-env LOG_QUERY=1 next dev -p 8000",
2020-07-17 10:03:38 +02:00
"build": "next build",
"start": "next start",
2020-07-25 02:00:56 +02:00
"build-cli": "rollup -c rollup.cli.config.js",
"build-tracker": "rollup -c rollup.tracker.config.js",
"build-db-schema": "dotenv prisma introspect",
"build-db-client": "dotenv prisma generate",
"create-account": "node cli/create-account.js"
2020-07-17 10:03:38 +02:00
},
"lint-staged": {
"**/*.js": [
"prettier --write"
],
"**/*.css": [
"stylelint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
2020-08-10 00:13:38 +02:00
"@prisma/client": "2.4.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",
"chalk": "^4.1.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-07-30 09:09:55 +02:00
"date-fns": "^2.15.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-08-07 11:46:21 +02:00
"escape-string-regexp": "^4.0.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",
2020-08-10 00:13:38 +02:00
"jose": "^1.27.3",
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-07-30 09:09:55 +02:00
"next": "9.5.1",
2020-07-17 10:03:38 +02:00
"node-fetch": "^2.6.0",
2020-07-18 04:15:29 +02:00
"promise-polyfill": "^8.1.3",
2020-07-17 10:03:38 +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-10 00:13:38 +02:00
"react-tooltip": "^4.2.8",
"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",
2020-08-01 12:34:56 +02:00
"tinycolor2": "^1.4.1",
2020-07-18 04:15:29 +02:00
"unfetch": "^4.1.0",
2020-07-30 09:09:55 +02:00
"uuid": "^8.3.0",
"yargs": "^15.4.1"
2020-07-17 10:03:38 +02:00
},
"devDependencies": {
2020-08-10 00:13:38 +02:00
"@prisma/cli": "2.4.1",
2020-07-18 04:15:29 +02:00
"@rollup/plugin-buble": "^0.21.3",
2020-07-25 02:00:56 +02:00
"@rollup/plugin-commonjs": "^14.0.0",
2020-07-17 10:03:38 +02:00
"@rollup/plugin-node-resolve": "^8.4.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-10 00:13:38 +02:00
"eslint": "^7.6.0",
2020-07-17 10:03:38 +02:00
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
2020-07-30 09:09:55 +02:00
"eslint-plugin-react": "^7.20.5",
2020-07-17 10:03:38 +02:00
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
2020-07-30 09:09:55 +02:00
"less": "^3.12.2",
2020-07-17 10:03:38 +02:00
"lint-staged": "^10.2.9",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-import": "^12.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
2020-07-30 09:09:55 +02:00
"prettier-eslint": "^11.0.0",
2020-08-10 00:13:38 +02:00
"rollup": "^2.23.1",
2020-07-25 02:00:56 +02:00
"rollup-plugin-hashbang": "^2.2.2",
2020-07-17 10:03:38 +02:00
"rollup-plugin-terser": "^6.1.0",
"stylelint": "^13.6.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-config-recommended": "^3.0.0"
}
}