-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 928 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 928 Bytes
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
{
"name": "dealbot",
"version": "0.0.1",
"description": "A simple deal bot for Synapse storage providers",
"private": true,
"author": "",
"license": "Apache-2.0 or MIT",
"scripts": {
"build": "pnpm -r run build",
"start:dev": "pnpm -r run start:dev",
"start:prod": "pnpm -r run start:prod",
"format": "pnpm -r run format",
"format:check": "pnpm -r run format:check",
"lint": "pnpm -r run lint",
"lint:check": "pnpm -r run lint:check",
"check": "pnpm -r run check",
"check:ci": "pnpm -r run check:ci",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"test:cov": "pnpm -r test:cov",
"test:e2e": "pnpm -r test:e2e",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"typescript": "catalog:"
},
"engines": {
"node": ">=22"
},
"pnpm": {
"overrides": {
"cron": "4.4.0"
}
}
}