-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "analytics-platform",
"version": "0.0.1",
"description": "Self-hostable, multi-game analytics platform for Phaser.js / React games with NestJS backends",
"private": true,
"license": "Apache-2.0",
"author": "Tusi Game",
"homepage": "https://github.com/Tusi-Game/game-analytics#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Tusi-Game/game-analytics.git"
},
"bugs": {
"url": "https://github.com/Tusi-Game/game-analytics/issues"
},
"keywords": [
"analytics",
"game-analytics",
"self-hosted",
"nestjs",
"telemetry",
"retention",
"monetization"
],
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "nest start --watch",
"changeset": "changeset",
"sdk:build": "npm run build --workspace=packages/sdk-client --workspace=packages/sdk-server",
"sdk:test": "npm run test --workspace=packages/sdk-client --workspace=packages/sdk-server",
"build:css": "tailwindcss -i src/panel/public/styles/tailwind.in.css -o src/panel/public/styles/tailwind.css --minify",
"build:css:watch": "tailwindcss -i src/panel/public/styles/tailwind.in.css -o src/panel/public/styles/tailwind.css --watch",
"build": "npm run build:css && nest build",
"start": "node dist/main.js",
"start:prod": "node dist/main.js",
"seed": "ts-node -r tsconfig-paths/register src/seed.ts",
"typeorm": "typeorm-ts-node-commonjs -d src/database/data-source.ts",
"migration:run": "npm run typeorm -- migration:run",
"migration:revert": "npm run typeorm -- migration:revert",
"migration:generate": "typeorm-ts-node-commonjs migration:generate -d src/database/data-source.ts",
"migration:show": "npm run typeorm -- migration:show",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\" --max-warnings 0",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "jest --config jest.config.ts",
"test:watch": "jest --config jest.config.ts --watch",
"test:cov": "jest --config jest.config.ts --coverage",
"test:e2e": "jest --config jest-e2e.config.ts",
"prepare": "husky || true"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1090.0",
"@nestjs/common": "^10.4.4",
"@nestjs/config": "^3.2.3",
"@nestjs/core": "^10.4.4",
"@nestjs/platform-express": "^10.4.4",
"@nestjs/typeorm": "^10.0.2",
"argon2": "^0.41.1",
"bullmq": "^5.13.2",
"ioredis": "^5.4.1",
"nunjucks": "^3.2.4",
"otplib": "^12.0.1",
"pg": "^8.13.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.1",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@nestjs/cli": "^10.4.5",
"@nestjs/schematics": "^10.1.4",
"@nestjs/testing": "^10.4.4",
"@tailwindcss/cli": "^4.3.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.10",
"@types/nunjucks": "^3.2.6",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"alpinejs": "^3.15.12",
"chart.js": "^4.5.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"htmx.org": "^2.0.10",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"supertest": "^7.0.0",
"tailwindcss": "^4.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.6.2"
}
}