-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.96 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
53
54
55
56
{
"name": "certified-organization-labeler",
"description": "Certified Organization Labeler fork for app.certified.actor.organization",
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"start:next": "next start -p ${NEXT_PORT:-3000}",
"start:proxy": "caddy run --config Caddyfile --adapter caddyfile",
"labeler": "tsx src/labeler/start.ts",
"dev:service": "concurrently --names \"next,labeler\" --prefix-colors \"blue,green\" \"npm run dev\" \"npm run labeler\"",
"start:service": "concurrently --kill-others-on-fail --names \"caddy,next,labeler\" --prefix-colors \"cyan,blue,green\" \"npm run start:proxy\" \"npm run start:next\" \"npm run labeler\"",
"test": "node --import tsx --test tests/**/*.test.ts",
"set-labels": "tsx src/labeler/set-labels.ts",
"setup": "tsx src/labeler/setup.ts",
"reset": "tsx src/labeler/reset-db.ts",
"gen:lexicons": "ts-lex build --lexicons ./lexicons --out ./src/lexicons --clear --import-ext \"\""
},
"dependencies": {
"@atproto/api": "0.19.9",
"@atproto/crypto": "^0.4.5",
"@atproto/lex": "^0.0.20",
"@atproto/tap": "0.2.13",
"@huggingface/inference": "^4.13.12",
"@skyware/bot": "^0.4.0",
"@skyware/labeler": "^0.2.0",
"@tailwindcss/postcss": "^4.0.0",
"better-sqlite3": "^11.0.0",
"concurrently": "^9.2.1",
"dotenv": "^16.0.0",
"express": "^4.21.0",
"next": "^16.2.4",
"next-themes": "^0.4.4",
"pino": "^9.0.0",
"pino-pretty": "^13.0.0",
"prom-client": "^15.0.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwindcss": "^4.0.0",
"tsx": "^4.0.0"
},
"engines": {
"node": ">=22 <23"
},
"devDependencies": {
"@atproto/lex": "^0.0.20",
"@types/better-sqlite3": "^7.6.0",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"typescript": "^5.0.0"
}
}