-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 768 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 768 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
{
"name": "retry_engine",
"version": "1.0.0",
"description": "Retry engine and stuff",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"dev": "tsx watch --watch src src/index.ts",
"start": "node dist/index.js",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.24.0",
"dependencies": {
"better-sqlite3": "^12.10.0",
"express": "^5.2.1",
"prettier": "^3.8.2",
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^4.7.0",
"tsx": "^4.7.0",
"typescript": "^6.0.2"
}
}