-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 981 Bytes
/
package.json
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
{
"name": "no-manga",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "wrangler pages dev ./dist",
"astro": "astro",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"generateMigrations": "drizzle-kit generate:sqlite --schema=drizzle/schema/index.ts",
"runMigrations": "node drizzle/scripts/runMigrations.js"
},
"dependencies": {
"@astrojs/cloudflare": "^8.1.0",
"astro": "^4.2.3",
"drizzle-orm": "^0.29.3",
"slugify": "^1.6.6"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"better-sqlite3": "^9.3.0",
"drizzle-kit": "^0.20.13",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"sass": "^1.70.0",
"wrangler": "^3.24.0"
}
}