-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "mocksmith-api",
"version": "1.0.0",
"description": "a general purpose api mocking service built with bun and sqlite.",
"type": "module",
"scripts": {
"dev": "bun --hot src/index.ts",
"start": "bun src/index.ts",
"lint": "eslint .",
"test": "bun test",
"ci": "bun ci && bun lint && bun test",
"db": "bun run database/index.ts help",
"db:create": "bun run database/index.ts create",
"db:status": "bun run database/index.ts status",
"db:migrate": "bun run database/index.ts migrate"
},
"author": "muzammil_07",
"license": "MIT",
"dependencies": {
"acorn": "8.16.0",
"bun-sqlite-migrations": "1.0.2",
"jose": "6.1.3",
"path-to-regexp": "8.3.0",
"safe-wrapper": "4.0.0",
"winston": "3.19.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/bun": "1.3.10",
"@types/node": "25.3.3",
"eslint": "10.0.2",
"globals": "17.4.0",
"jiti": "2.6.1",
"typescript-eslint": "8.56.1"
},
"peerDependencies": {
"typescript": "5.9.3"
}
}