-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.32 KB
/
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
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
{
"name": "astro-master",
"type": "module",
"version": "0.0.1",
"packageManager": "[email protected]",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check",
"format": "prettier '**/*.{cjs,mjs,ts,tsx,md,json,astro}' --ignore-path ./.gitignore --ignore-unknown --write",
"format:check": "prettier '**/*.{cjs,mjs,ts,tsx,md,json,astro}' --ignore-path ./.gitignore --ignore-unknown --check",
"lint": "eslint . --report-unused-disable-directives",
"lint:fix": "pnpm lint --fix",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push",
"db:pull": "drizzle-kit pull",
"db:generate": "drizzle-kit generate",
"db:migrate": "dotenvx run -- tsx ./drizzle/migrate.ts",
"db:seed:collections": "dotenvx run -- tsx ./drizzle/seeders/collections.ts",
"db:seed:categories": "dotenvx run -- tsx ./drizzle/seeders/categories.ts",
"db:seed:subcollections": "dotenvx run -- tsx ./drizzle/seeders/subcollections.ts",
"db:seed:subcategories": "dotenvx run -- tsx ./drizzle/seeders/subcategories.ts",
"db:seed:products": "dotenvx run -- tsx ./drizzle/seeders/products.ts",
"db:seed:rowcounts": "dotenvx run -- tsx ./drizzle/seeders/row-counts.ts"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/solid-js": "^4.4.2",
"@astrojs/tailwind": "^5.1.2",
"@astrojs/vercel": "^7.8.2",
"@libsql/client": "^0.14.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@t3-oss/env-core": "^0.11.1",
"@upstash/ratelimit": "^2.0.4",
"@upstash/redis": "^1.34.3",
"astro": "^4.16.14",
"drizzle-orm": "^0.35.3",
"oslo": "^1.2.1",
"p-map": "^7.0.2",
"sharp": "^0.33.5",
"solid-js": "^1.9.3",
"ulid": "^2.3.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@dotenvx/dotenvx": "^1.21.0",
"@types/node": "^22.7.4",
"@typescript-eslint/parser": "^8.11.0",
"drizzle-kit": "^0.26.2",
"eslint": "^9.13.0",
"eslint-plugin-astro": "^1.3.0",
"fontaine": "^0.5.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.2",
"typescript": "^5.4.3"
}
}