-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.33 KB
/
package.json
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
{
"name": "typescript-node-bun",
"version": "1.0.0",
"module": "app/index.ts",
"type": "module",
"main": "dist/app/index.js",
"scripts": {
"test": "bun test --watch",
"test:production": "bun test --timeout 20 --rerun-each 10 --bail 10",
"clean": "rm -rf dist && rm -rf storage && echo 'Done.'",
"build": "bun build --target=bun app/index.ts --outfile=dist/index.js",
"start": "bun --watch app/index.ts",
"lint": "eslint . --fix --quiet --color --cache",
"lint:format": "prettier --check .",
"lint:spelling": "cspell . --no-progress --unique",
"format": "prettier --write app"
},
"author": "Patrick Rizzardi <[email protected]> (https://redact.digital)",
"dependencies": {
"datadog-winston": "^1.6.0",
"dayjs": "^1.11.13",
"mathjs": "13.2.2",
"valibot": "^1.0.0-beta.3",
"winston": "^3.17.0",
"yinzerflow": "^0.1.6"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@types/datadog-winston": "^1.0.7",
"bun-types": "^1.1.34",
"cspell": "8.16.0",
"eslint": "^9.14.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"globals": "^15.12.0",
"logform": "^2.7.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "8.14.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}