-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "expree",
"version": "2.1.0",
"description": "A better way to Express",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "src/index.js",
"repository": "https://github.com/JamieCurnow/expree.git",
"author": "Jamie Curnow <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "rimraf dist && tsc -d",
"watch": "tsc --watch -d",
"test": "vitest run",
"build:example": "tsc -p tsconfig-example-app.json",
"serve:example": "node example-app-dist/example-app",
"dev": "nodemon --watch ./src --watch ./example-app --exec \"rimraf example-app-dist && npm run build:example && npm run serve:example\""
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^3.3.0",
"express": "^4.18.2",
"swagger-ui-express": "^4.6.0",
"zod": "^3.19.1",
"zod-express-middleware": "^1.4.0"
},
"devDependencies": {
"@types/node": "^18.11.11",
"@types/swagger-ui-express": "^4.1.3",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"vitest": "^0.25.6"
}
}