forked from moshehbenavraham/wildeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.19 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.19 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
{
"name": "luminari-wilderness-editor",
"description": "A modern web-based visual editor for creating and managing wilderness regions, paths, and landmarks in the LuminariMUD game world",
"version": "0.1.0",
"private": true,
"type": "module",
"author": {
"name": "Max aka Mosheh",
"email": "moshehwebservices@live.com",
"url": "https://github.com/moshehbenavraham"
},
"repository": {
"type": "git",
"url": "https://github.com/moshehbenavraham/wildeditor.git"
},
"homepage": "https://github.com/moshehbenavraham/wildeditor#readme",
"bugs": {
"url": "https://github.com/moshehbenavraham/wildeditor/issues"
},
"license": "MIT",
"keywords": [
"mud",
"luminari",
"wilderness",
"editor",
"react",
"typescript",
"python",
"fastapi",
"vite",
"spatial",
"mapping",
"monorepo"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=@wildeditor/frontend",
"build": "npm run build --workspace=@wildeditor/frontend",
"preview": "npm run preview --workspace=@wildeditor/frontend",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"type-check": "turbo run type-check",
"test": "turbo run test",
"clean": "turbo run clean",
"dev:frontend": "npm run dev --workspace=@wildeditor/frontend",
"dev:backend": "echo 'Backend is now Python FastAPI. Run: cd apps/backend/src && python -m uvicorn main:app --reload --host 0.0.0.0 --port 8000'",
"build:frontend": "npm run build --workspace=@wildeditor/frontend",
"build:backend": "echo 'Python backend does not require building (interpreted language)'",
"build:all": "npm run build:frontend",
"start:backend": "cd apps/backend/src && python -m uvicorn main:app --host 0.0.0.0 --port 8000",
"install:backend": "cd apps/backend/src && pip install -r requirements.txt"
},
"devDependencies": {
"turbo": "^2.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"packageManager": "npm@11.4.1",
"dependencies": {
"@supabase/supabase-js": "^2.53.0",
"prismjs": "^1.30.0",
"react-syntax-highlighter": "^15.6.6"
},
"overrides": {
"prismjs": "^1.30.0"
}
}