-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 993 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 993 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
{
"name": "e2e",
"version": "0.0.1",
"main": "./dist/index.js",
"author": "Michael Nahkies",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"clean": "rm -rf ./dist && rm -rf ./src/generated",
"generate": "./scripts/generate.sh",
"build": "tsc -p ./tsconfig.json",
"test": "jest",
"start": "node ./dist/index.js"
},
"dependencies": {
"@koa/router": "^15.5.0",
"@nahkies/typescript-axios-runtime": "workspace:*",
"@nahkies/typescript-express-runtime": "workspace:*",
"@nahkies/typescript-fetch-runtime": "workspace:*",
"@nahkies/typescript-koa-runtime": "workspace:*",
"axios": "^1.15.2",
"express": "^5.2.1",
"koa": "^3.2.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@jest/globals": "^30.3.0",
"@nahkies/openapi-code-generator": "workspace:*",
"@types/express": "^5.0.6",
"@types/koa": "^3.0.2",
"expect": "^30.3.0",
"jest": "^30.3.0",
"typescript": "^6.0.3"
}
}