-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 2 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 2 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
{
"name": "project-hex",
"version": "2.1.0",
"private": true,
"license": "GPL-3.0-or-later",
"type": "module",
"homepage": "https://hex.dvdagames.com/",
"description": "Project Hex is a platform for creating and sharing procedural content generators built on the Hex Flower Engine framework. It allows users to create their own custom generators using a visual editor and share them with the community.",
"scripts": {
"build": "tsc && vite build",
"db:migrate": "npx wrangler d1 migrations apply hex-flower-engine-db",
"db:migrate:local": "npx wrangler d1 migrations apply hex-flower-engine-db --local",
"deploy": "npx wrangler pages deploy dist",
"dev": "concurrently -k -n vite,api -c cyan,magenta \"vite\" \"wrangler pages dev dist --port 8788\"",
"dev:vite": "vite",
"dev:full": "npm run build && npx wrangler pages dev dist",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@dvdagames/js-die-roller": "^3.1.0",
"@lucide/lab": "^0.1.2",
"@mailerlite/mailerlite-nodejs": "^1.5.0",
"@mantine/core": "^7.15.0",
"@mantine/form": "^7.15.0",
"@mantine/hooks": "^7.15.0",
"@mantine/notifications": "^7.15.0",
"lucide-react": "^0.468.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.1.0"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241205.0",
"@types/node": "^22.10.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"concurrently": "^9.2.1",
"eslint": "^9.16.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.14",
"postcss": "^8.4.49",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-pwa": "^0.21.1",
"wrangler": "^4.64.0"
},
"engines": {
"node": ">=24.0.0"
}
}