-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.59 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.59 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
46
47
48
49
50
51
52
{
"name": "valita-server",
"version": "1.1.1",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/OkayestDev/valita.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "node --inspect=9229 ./node_modules/jest/bin/jest.js --runInBand --detectOpenHandles",
"example-serverless": "serverless offline start --stage dev -c ./example/bookstore/serverless.yml",
"example-server": "node --inspect=9229 -r ts-node/register ./example/bookstore/bookstore.app.ts",
"publish:latest": "npm run build && npm publish --access public",
"hotbun": "bun --hot ./example/valita-bookstore/bookstore.app.ts"
},
"author": "OkayestDev",
"license": "MIT",
"description": "express-like api framework with built-in zod schema validation",
"devDependencies": {
"@types/aws-lambda": "^8.10.157",
"@types/express": "^5.0.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.5.4",
"eslint": "^9.12.0",
"express": "^5.1.0",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"serverless": "^4.23.0",
"serverless-offline": "^14.4.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"batch-stdout": "^0.1.0",
"zod": "^4.1.12"
},
"keywords": [
"api",
"lambda",
"http",
"zod",
"validation",
"express",
"framework",
"rest",
"restful",
"router"
]
}