-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (35 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (35 loc) · 1.15 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
{
"version": "1.1.0",
"name": "payment_api",
"module": "src/index.ts",
"type": "module",
"scripts": {
"clean": "rimraf ./build",
"clean:node": "rimraf ./build.node",
"build": "bun run clean && bun build ./src/index.ts --outdir ./build --target node",
"build:node": "npm run clean:node && tsc --project tsconfig.node.json",
"dev": "bun --watch --env-file=.env.dev src/index.ts",
"dev:node": "node --env-file=.env.dev ./build.node/index.js",
"start": "bun --watch --env-file=.env.prod ./build/index.js",
"start:node": "node --env-file=.env.dev ./build.node/index.js",
"test": "bun test --timeout=10000 --env-file=.env.test --coverage ./test/**/*.test.ts"
},
"engines": {
"node": ">=20.6.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^4.17.21",
"@types/uuid": "^10.0.0",
"rimraf": "^6.0.1"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"axios": "^1.7.7",
"express": "^4.19.2",
"uuid": "^10.0.0",
"zod": "^3.23.8"
}
}