-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.55 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
{
"name": "microscrape",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "vitest",
"build": "tsc --project tsconfig.json",
"start": "pnpm run build && concurrently --names \"api,scheduler,slack\" \"node dist/api.js\" \"node dist/scheduler.js\" \"node dist/slack.js\" --kill-others",
"api": "pnpm run build && node dist/api.js",
"scheduler": "pnpm run build && node dist/scheduler.js",
"slack": "pnpm run build && node dist/slack.js",
"generate": "drizzle-kit generate",
"migrate": "drizzle-kit migrate",
"push": "drizzle-kit push",
"initial": "tsx ./src/init",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"clean": "rimraf dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.15.0",
"dependencies": {
"@hono/node-server": "^1.19.5",
"@hono/valibot-validator": "^0.5.3",
"@libsql/client": "^0.15.15",
"@slack/bolt": "^4.6.0",
"dotenv": "^17.2.3",
"drizzle-orm": "^0.44.7",
"eslint-plugin-jest": "^29.0.1",
"hono": "^4.10.4",
"hono-openapi": "^1.1.1",
"node-cron": "^4.2.1",
"playwright": "^1.56.1",
"valibot": "^1.1.0"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@types/node": "^20.19.24",
"concurrently": "^9.2.1",
"drizzle-kit": "^0.31.6",
"eslint": "^9.38.0",
"rimraf": "^6.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"vitest": "^4.0.8"
}
}