-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
130 lines (130 loc) · 3.88 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
{
"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": "vitest run --coverage test",
"test:packages": "pnpm run -r --stream test",
"test": "pnpm run test:root && pnpm run test:all",
"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"
},
"files": [
"README.md",
"CHANGELOG.md",
"AUTHORS"
],
"type": "module",
"dependencies": {
"@adminjs/sequelize": "^4.1.1",
"@databases/pg": "^5.5.0",
"@dotenvx/dotenvx": "^1.24.0",
"@fastify/sensible": "^6.0.1",
"@mikro-orm/core": "^6.4.0",
"@mikro-orm/postgresql": "^6.4.0",
"@mikro-orm/reflection": "^6.4.0",
"@sentry/node": "^8.38.0",
"@sentry/profiling-node": "8.38.0",
"adminjs": "^7.8.13",
"debug": "^4.3.7",
"fastify": "^5.1.0",
"moment": "^2.30.1",
"pino": "^9.5.0",
"pino-debug": "^2.0.0",
"pino-pretty": "^13.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-mcots": "link:packages/mcots",
"rusty-motors-nps": "link:packages/nps",
"rusty-motors-patch": "link:packages/patch",
"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-socket": "link:src/socket",
"rusty-motors-transactions": "link:packages/transactions",
"sqlite": "^5.1.1",
"ts-node": "10.9.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.9",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@databases/pg-migrations": "^5.0.3",
"@databases/pg-schema-cli": "^4.4.0",
"@databases/pg-test": "^3.1.2",
"@mikro-orm/cli": "^6.4.0",
"@sentry/cli": "^2.38.2",
"@tsconfig/node-lts": "^22.0.0",
"@tsconfig/node20": "^20.1.4",
"@types/chai": "5.0.1",
"@types/node": "^22.9.0",
"@types/sinon": "17.0.3",
"@types/sinon-chai": "4.0.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "5.2.1",
"husky": "^9.1.6",
"jsdoc": "^4.0.4",
"lint-staged": "^15.2.10",
"prettier": "3.3.3",
"prettier-eslint": "16.3.0",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"tsx": "4.19.2",
"typescript": "^5.6.3",
"typescript-eslint-language-service": "^5.0.5",
"vitest": "^2.1.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.88c9c3864450350e65a33587ab801acf946d7c814ed1134da4a924f6df5a2120fd36b46aab68f7cd1d413149112d53c7db3a4136624cfd00ff1846a0c6cef48a",
"pnpm": {
"overrides": {
"tinymce": "^7.5.1"
}
}
}