-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "caldova-careers",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"start": "node ./dist/server/entry.mjs",
"astro": "astro",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx db/migrate.ts",
"db:setup": "npm run db:migrate",
"predev": "npm run db:setup",
"prebuild": "npm run db:setup",
"test:unit": "vitest run",
"test:e2e": "playwright test",
"test:e2e:install": "playwright install chromium",
"typecheck": "astro check",
"lint": "eslint ."
},
"dependencies": {
"@astrojs/check": "^0.9.10",
"@astrojs/node": "^11.0.2",
"@libsql/client": "^0.17.4",
"@tailwindcss/vite": "^4.3.2",
"astro": "^7.1.4",
"drizzle-orm": "^0.45.2",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.0",
"@types/node": "^26.1.2",
"@typescript/native": "npm:typescript@^7.0.2",
"drizzle-kit": "^0.31.10",
"eslint": "^10.8.0",
"eslint-plugin-astro": "^3.0.0",
"globals": "^17.8.0",
"tailwindcss": "^4.3.1",
"tsx": "^4.23.1",
"typescript-eslint": "^8.64.0",
"vitest": "^4.1.10"
}
}