-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.79 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
48
49
50
51
52
53
54
55
56
{
"name": "booking-api",
"version": "1.0.0",
"description": "",
"_moduleAliases": {
"~": "dist/src"
},
"scripts": {
"tunnel": "ssh -R 80:localhost:7071 serveo.net",
"tunnel2": "ssh -R 80:localhost:7071 [email protected]",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"watch": "tsc -w",
"clean": "rimraf dist",
"prestart": "npm run clean && npm run build",
"start": "func start",
"test": "jest --verbose",
"bundle": "npx swagger-cli bundle openapi/openapi.yaml -t yaml -o docs/openapi.yaml",
"validate": "npm run bundle && npx swagger-cli validate docs/openapi.yaml",
"generate-docs": "npx @redocly/cli build-docs docs/openapi.yaml -o docs/index.html --title 'Booking Api Documentation'",
"generate-ts": "npm run bundle && npx orval --config ./orval.config.js",
"postprocess": "node postprocess.js",
"codegen": "npx graphql-codegen"
},
"dependencies": {
"@azure/functions": "^4.3.0",
"@azure/storage-queue": "^12.16.0",
"@shopify/admin-api-client": "^0.2.9",
"@types/jsonwebtoken": "^9.0.6",
"applicationinsights": "^2.9.5",
"axios": "^1.6.7",
"date-fns": "^2.30.0",
"durable-functions": "^3.1.0",
"install": "^0.13.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongoose": "^7.6.10",
"openai": "^4.52.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@shopify/api-codegen-preset": "^0.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^18.x",
"date-fns-tz": "^2.0.1",
"fs": "^0.0.1-security",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.1.7",
"orval": "^6.25.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.2",
"typescript": "^4.0.0"
},
"main": "dist/src/functions/*.js"
}