-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.35 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@crystallize/node-service-api-router",
"license": "MIT",
"version": "0.4.0",
"author": "Crystallize <hello@crystallize.com> (https://crystallize.com)",
"contributors": [
"Sébastien Morel <sebastien@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-router.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.5",
"@types/koa-json": "^2.0.20",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^3.1.1",
"@types/node": "^17.0.23",
"jest": "^27.5.1",
"koa": "^2.13.4",
"zod": "^3.14.4"
},
"peerDependencies": {
"koa": "*",
"zod": "*"
},
"dependencies": {
"@crystallize/js-api-client": "*",
"@koa/cors": "^3.3.0",
"jsonwebtoken": "^8.5.1",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-router": "^10.1.1",
"typescript": "^4.6.3"
}
}