-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.37 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
48
49
50
51
52
{
"name": "post-and-prune",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"test": "jest",
"docker:build": "docker build -t post-and-prune .",
"migration": "node migration-cli.js",
"migration:status": "node migration-cli.js status",
"migration:up": "node migration-cli.js up",
"migration:down": "node migration-cli.js down",
"migration:create": "node migration-cli.js create"
},
"dependencies": {
"@atproto/api": "^0.18.3",
"@tailwindcss/postcss": "^4.1.13",
"clsx": "^2.1.1",
"commander": "^14.0.2",
"cookies-next": "^6.1.1",
"dayjs": "^1.11.18",
"exifreader": "^4.32.0",
"jimp": "^1.6.0",
"lucide-react": "^0.544.0",
"next": "15.5.3",
"node-cron": "^4.2.1",
"postcss": "^8.5.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"tailwindcss": "^4.1.13",
"ts-node": "^10.9.2",
"tsconfig": "^7.0.0",
"umzug": "^3.8.2"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.25",
"@types/react": "^19",
"@types/react-dom": "^19",
"jest": "^30.1.3",
"lightningcss": "^1.30.1",
"ts-jest": "^29.4.4",
"tsx": "^4.20.6",
"typescript": "^5"
}
}