-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.71 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.71 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
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
{
"name": "muditor",
"version": "0.1.0",
"description": "A modern, database-driven MUD editor and administration tool",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/muditor.git"
},
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "bun run --filter '*' dev",
"dev:web": "bun run --filter @muditor/web dev",
"dev:api": "bun run --filter @muditor/api dev",
"build": "bun run --filter './packages/*' build && bun run --filter './apps/*' build",
"build:web": "bun run --filter @muditor/web build",
"build:api": "bun run --filter @muditor/api build",
"start": "bun run --filter '*' start",
"start:web": "bun run --filter @muditor/web start",
"start:api": "bun run --filter @muditor/api start",
"test": "bun run --filter '*' test",
"test:watch": "bun run --filter '*' test:watch",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report test-results/html",
"lint": "bun run --filter '*' lint",
"lint:fix": "bun run --filter '*' lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "bun run --filter '*' type-check",
"type-check:native": "tsgo --noEmit -p apps/api/tsconfig.json && tsgo --noEmit -p apps/web/tsconfig.json && tsgo --noEmit -p packages/db/tsconfig.json && tsgo --noEmit -p packages/types/tsconfig.json && tsgo --noEmit -p packages/ui/tsconfig.json",
"db:generate": "bun run --filter @muditor/db generate",
"db:push": "bun run --filter @muditor/db push",
"db:migrate": "bun run --filter @muditor/db migrate:dev",
"db:migrate:reset": "bun run --filter @muditor/db migrate:reset",
"db:studio": "bun run --filter @muditor/db studio",
"db:seed": "bun run --filter @muditor/db seed",
"db:setup": "bun run db:generate && bun run db:migrate && bun run db:seed",
"codegen": "graphql-codegen --config codegen.ts",
"codegen:watch": "graphql-codegen --config codegen.ts --watch",
"clean": "bun run --filter '*' clean && rm -rf node_modules",
"prepare": "husky",
"system:start": "./scripts/start-system.sh",
"system:stop": "./scripts/stop-system.sh",
"system:status": "./scripts/check-system.sh",
"system:restart": "./scripts/stop-system.sh && ./scripts/start-system.sh",
"check:gql-args": "bun scripts/check-graphql-args.ts",
"build:schema": "bun apps/api/scripts/build-graphql-schema.ts",
"preflight": "bun run build:schema && bun run type-check && bun run lint && bun scripts/validate-graphql.js && bun run check:gql-args"
},
"devDependencies": {
"@eslint/js": "^9.39.0",
"@graphql-codegen/cli": "^6.0.1",
"@graphql-codegen/client-preset": "^5.1.1",
"@graphql-codegen/typescript": "^5.0.2",
"@graphql-codegen/typescript-operations": "^5.0.2",
"@graphql-codegen/typescript-react-apollo": "^4.3.3",
"@playwright/test": "^1.56.1",
"@swc-node/register": "^1.11.1",
"@swc/cli": "^0.8.0",
"@swc/core": "^1.15.18",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.13",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@typescript/native-preview": "^7.0.0-dev.20260223.1",
"eslint": "^9.39.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.8.1",
"prisma": "^7.0.0",
"turbo": "^2.6.0",
"typescript": "6.0.0-beta",
"typescript-eslint": "^8.46.2"
},
"overrides": {
"axios": "^1.12.0",
"@types/node": "24.10.13"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix --cache"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [
"mud",
"editor",
"gaming",
"world-building",
"postgresql",
"graphql",
"react",
"nextjs",
"nestjs"
],
"dependencies": {
"dotenv": "^17.3.1",
"lucide-react": "^0.575.0",
"monaco-editor": "^0.55.1",
"unix-crypt-td-js": "^1.1.4"
},
"trustedDependencies": [
"@apollo/protobufjs",
"@nestjs/core",
"@tailwindcss/oxide",
"bcrypt",
"esbuild",
"prisma",
"sharp",
"unrs-resolver"
]
}