-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 962 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 962 Bytes
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
{
"name": "emdashlearn",
"version": "0.1.0",
"description": "Open source LMS plugin for EmDash CMS — courses, progress, and learning on the edge",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"typecheck": "astro check",
"deploy": "astro build && wrangler deploy --config dist/server/wrangler.json",
"db:migrate": "wrangler d1 migrations apply emdashlearn-waitlist --remote",
"db:migrate:local": "wrangler d1 migrations apply emdashlearn-waitlist --local"
},
"keywords": [
"astro",
"cloudflare",
"lms",
"emdash",
"education",
"typescript"
],
"license": "MIT",
"dependencies": {
"@astrojs/cloudflare": "^13.1.7",
"astro": "^6.1.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@tailwindcss/vite": "^4.2.2",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"tailwindcss": "^4.2.2",
"typescript": "^5.9.3",
"wrangler": "^4.80.0"
}
}