-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 928 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 928 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
{
"name": "no-manga",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "wrangler dev",
"astro": "astro",
"lint": "eslint ./drizzle ./src",
"lint:fix": "npm run lint -- --fix",
"generateMigrations": "drizzle-kit generate --dialect=sqlite --schema=drizzle/schema/index.ts",
"runMigrations": "node drizzle/scripts/runMigrations.js"
},
"dependencies": {
"@astrojs/cloudflare": "^12.5.1",
"astro": "^5.7.12",
"drizzle-orm": "^0.43.1",
"slugify": "^1.6.6"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"drizzle-kit": "^0.31.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"sass": "^1.88.0",
"typescript-eslint": "^8.32.0",
"wrangler": "^4.14.4"
}
}