-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
139 lines (139 loc) · 4.53 KB
/
package.json
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "mcos",
"version": "1.0.0-alpha1",
"description": "a server",
"author": "Drazi Crendraven <[email protected]>",
"license": "AGPL-3.0",
"private": true,
"repository": {
"type": "git",
"url": "[email protected]:drazisil/mcos.git"
},
"scripts": {
"clean": "rm --verbose -rf **/node_modules node_modules",
"start": "make start",
"check:all": "pnpm run -r --stream check",
"lint:all": "pnpm run -r --stream lint",
"format:all": "pnpm run -r --stream format",
"test:root": "nx test run --coverage test",
"test:packages": "pnpm run -r --stream test",
"test": "make test",
"types:db": "pnpm --filter=rusty-motors-database run types:db",
"types": "dotenvx run -- pnpm run types:db",
"migrate": "pg-migrations apply --directory migrations ",
"prepare": "husky",
"build": "tsc"
},
"files": [
"README.md",
"CHANGELOG.md",
"AUTHORS"
],
"type": "module",
"dependencies": {
"@databases/pg": "^5.5.0",
"@dotenvx/dotenvx": "^1.35.0",
"@fastify/sensible": "^6.0.3",
"@mikro-orm/core": "^6.4.5",
"@mikro-orm/postgresql": "^6.4.5",
"@mikro-orm/reflection": "^6.4.5",
"@rustymotors/binary": "workspace:^",
"@sentry/node": "^8.54.0",
"@sentry/profiling-node": "8.54.0",
"adminjs": "^7.8.15",
"bcrypt": "^5.1.1",
"debug": "^4.4.0",
"fastify": "^5.2.1",
"moment": "^2.30.1",
"pino-debug": "^3.0.0",
"rusty-motors-chat": "link:src/chat",
"rusty-motors-cli": "link:packages/cli",
"rusty-motors-database": "link:packages/database",
"rusty-motors-gateway": "link:packages/gateway",
"rusty-motors-lobby": "link:packages/lobby",
"rusty-motors-login": "link:packages/login",
"rusty-motors-nps": "link:packages/nps",
"rusty-motors-personas": "link:packages/persona",
"rusty-motors-shard": "link:packages/shard",
"rusty-motors-shared": "link:packages/shared",
"rusty-motors-shared-packets": "link:packages/shared-packets",
"rusty-motors-transactions": "link:packages/transactions",
"ts-node": "10.9.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@databases/pg-migrations": "^5.0.3",
"@databases/pg-schema-cli": "^4.4.0",
"@databases/pg-test": "^3.1.2",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@nx/eslint": "20.4.2",
"@nx/js": "20.4.2",
"@nx/node": "20.4.2",
"@nx/vite": "20.4.2",
"@nx/web": "20.4.2",
"@sentry/cli": "^2.41.1",
"@swc-node/register": "~1.10.9",
"@swc/core": "~1.10.15",
"@swc/helpers": "~0.5.15",
"@tsconfig/node-lts": "^22.0.1",
"@tsconfig/node20": "^20.1.4",
"@types/bcrypt": "^5.0.2",
"@types/chai": "5.0.1",
"@types/node": "^22.13.1",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "4.0.0",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.5",
"eslint": "^9.20.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "5.2.3",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"nx": "20.4.2",
"prettier": "3.5.0",
"prettier-eslint": "16.3.0",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"tslib": "^2.8.1",
"tsx": "4.19.2",
"typescript": "^5.7.3",
"typescript-eslint-language-service": "^5.0.5",
"vite": "^6.1.0",
"vitest": "^3.0.5"
},
"c8": {
"all": true,
"reporter": [
"text",
"cobertura",
"html",
"lcov"
],
"exclude": [
"coverage",
"**/*.test.m{j,t}s",
"docs",
"docs2"
]
},
"lint-staged": {
"**/*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "[email protected]+sha512.398035c7bd696d0ba0b10a688ed558285329d27ea994804a52bad9167d8e3a72bcb993f9699585d3ca25779ac64949ef422757a6c31102c12ab932e5cbe5cc92",
"pnpm": {
"overrides": {
"tinymce": "^7.6.1"
}
}
}