-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1020 Bytes
/
package.json
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
{
"name": "@cryptlex/stripe-integration",
"version": "2.0.0",
"description": "Hono server for creating Cryptlex Users and Licenses based on Stripe events",
"main": "index.js",
"scripts": {
"build:node": "tsc && esbuild ./index.node.ts --bundle --platform=node --target=node22 --outdir=./dist --allow-overwrite",
"build:aws": "tsc && esbuild ./index.aws.ts --bundle --outfile=./dist/index.js --platform=node --target=node22 --allow-overwrite",
"generate:mock-server": "msw-auto-mock https://api.dev.cryptlex.com/api-docs/v3/swagger.json -o ./tests/mock-server",
"test": "vitest"
},
"license": "MIT",
"dependencies": {
"@hono/node-server": "1.13.7",
"hono": "4.6.9",
"nanoid": "5.0.9",
"openapi-fetch": "0.13.0"
},
"devDependencies": {
"@cryptlex/web-api-types": "1.9.0",
"@tsconfig/strictest": "^2.0.5",
"esbuild": "0.24.0",
"msw": "2.7.0",
"msw-auto-mock": "^0.25.0",
"stripe": "17.4.0",
"typescript": "5.6.3",
"vitest": "^2.1.8"
}
}