mirror of
https://github.com/standardnotes/server
synced 2026-01-16 20:04:32 -05:00
62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"name": "@standardnotes/analytics",
|
|
"version": "2.9.6",
|
|
"engines": {
|
|
"node": ">=18.0.0 <19.0.0"
|
|
},
|
|
"private": true,
|
|
"description": "Analytics tools for Standard Notes projects",
|
|
"main": "dist/src/index.js",
|
|
"author": "Standard Notes",
|
|
"types": "dist/src/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"license": "AGPL-3.0-or-later",
|
|
"scripts": {
|
|
"clean": "rm -fr dist",
|
|
"build": "tsc --build",
|
|
"lint": "eslint . --ext .ts",
|
|
"lint:fix": "eslint . --ext .ts --fix",
|
|
"test": "jest --coverage --config=./jest.config.js --maxWorkers=50%",
|
|
"worker": "yarn node dist/bin/worker.js",
|
|
"report": "yarn node dist/bin/report.js",
|
|
"setup:env": "cp .env.sample .env",
|
|
"typeorm": "typeorm-ts-node-commonjs"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ioredis": "^5.0.0",
|
|
"@types/jest": "^29.1.1",
|
|
"@types/newrelic": "^7.0.4",
|
|
"@types/node": "^18.0.0",
|
|
"@types/uuid": "^8.3.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.30.0",
|
|
"eslint": "^8.14.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.1.2",
|
|
"ts-jest": "^29.0.3",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"dependencies": {
|
|
"@newrelic/native-metrics": "^9.0.0",
|
|
"@newrelic/winston-enricher": "^4.0.0",
|
|
"@sentry/node": "^7.19.0",
|
|
"@standardnotes/common": "workspace:*",
|
|
"@standardnotes/domain-events": "workspace:*",
|
|
"@standardnotes/domain-events-infra": "workspace:*",
|
|
"@standardnotes/time": "workspace:*",
|
|
"aws-sdk": "^2.1253.0",
|
|
"dayjs": "^1.11.6",
|
|
"dotenv": "^16.0.1",
|
|
"inversify": "^6.0.1",
|
|
"ioredis": "^5.2.4",
|
|
"mysql2": "^2.3.3",
|
|
"newrelic": "^9.6.0",
|
|
"reflect-metadata": "^0.1.13",
|
|
"shallow-equal-object": "^1.1.1",
|
|
"typeorm": "^0.3.10",
|
|
"uuid": "^9.0.0",
|
|
"winston": "^3.8.1"
|
|
}
|
|
}
|