-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 913 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 913 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
39
40
41
42
43
{
"name": "billstack",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"test": "ava --serial",
"build": "tsc",
"start": "node dist/index.js",
"db:migrate": "dbmate -d src/db/migrations up",
"db:status": "dbmate -d src/db/migrations status",
"db:new": "dbmate -d src/db/migrations new"
},
"ava": {
"files": [
"src/tests/**/*.test.ts"
],
"extensions": [
"ts"
],
"nodeArguments": [
"--import=tsx"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.0",
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.9.1",
"ava": "^8.0.1",
"tsx": "^4.22.3",
"typescript": "^6.0.3"
},
"dependencies": {
"dbmate": "^2.33.0",
"express": "^5.2.1",
"postgres": "^3.4.9"
}
}