-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.31 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.31 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
40
41
42
43
44
45
{
"name": "@crystallize/node-service-api-request-handlers",
"license": "MIT",
"version": "5.0.0",
"author": "Crystallize <hello@crystallize.com> (https://crystallize.com)",
"contributors": [
"Sébastien Morel <sebastien@crystallize.com>",
"Dhairya Dwivedi <dhairya@crystallize.com>"
],
"scripts": {
"watch": "tsc -W",
"build": "tsc",
"test": "jest",
"bump": "yarn tsc && yarn version --no-git-tag-version --new-version"
},
"repository": {
"type": "git",
"url": "https://github.com/CrystallizeAPI/node-service-api-request-handlers.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@tsconfig/node22": "^22.0.2",
"@types/jsonwebtoken": "^9.0.10",
"@types/koa": "^3.0.0",
"@types/node": "^24.5.2",
"@types/node-fetch": "^2",
"jest": "^30.1.3",
"stripe": "^18.5.0"
},
"peerDependencies": {
"stripe": "*",
"zod": "*"
},
"dependencies": {
"zod": "^4.1.11",
"@adyen/api-library": "^29.1.0",
"@crystallize/js-api-client": "*",
"concurrently": "^9.2.0",
"jsonwebtoken": "^9.0.2",
"node-fetch": "^2",
"razorpay": "^2.9.6",
"typescript": "^5"
}
}