-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "ivokundotcom",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "bun@1.1.38",
"workspaces": [
"web",
"cms"
],
"scripts": {
"typecheck": "bun --filter '*' typecheck",
"db:new": "dbmate -d ./db/migrations new",
"db:up": "dbmate -d ./db/migrations up",
"db:down": "dbmate -d ./db/migrations down",
"db:status": "dbmate -d ./db/migrations status",
"db:dump": "dbmate -d ./db/migrations dump",
"db:reset": "dbmate -d ./db/migrations drop && dbmate -d ./db/migrations up",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f"
},
"devDependencies": {
"@effect/language-service": "^0.64.1",
"@eslint/js": "^9.39.2",
"@tsconfig/node22": "22.0.0",
"@types/node": "24.0.8",
"babel-eslint": "10.1.0",
"eslint": "8.38.0",
"eslint-plugin-astro": "0.26.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"typescript": "5.8.3"
},
"engines": {
"node": ">=22.17.0",
"bun": ">=1.1.38"
},
"volta": {
"node": "22.17.0"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19"
}
}