-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 908 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 908 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
37
38
{
"name": "user-api",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"start": "bun dist/app.js",
"dev": "bun --hot src/app.ts",
"build": "bun build src/app.ts --outdir dist",
"test": "bun test",
"lint": "bunx eslint . --ext .ts --fix",
"db:reload": "bun sqlite/scripts/drop.ts && bun sqlite/scripts/rehydrate.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@faker-js/faker": "^9.7.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"sqlite": "^5.1.1"
},
"devDependencies": {
"@eslint/js": "^9.31.0",
"@types/express": "^4.17.21",
"@types/faker": "^6.6.8",
"@types/node": "^22.14.1",
"bun-types": "^1.2.18",
"eslint": "^9.31.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0"
},
"engines": {
"node": "22.x",
"bun": "1.2.x"
},
"type": "module"
}