-
Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.19 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.19 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "taco-js-api",
"version": "0.1.0",
"private": true,
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"main": "src/server.ts",
"scripts": {
"dev": "nodemon src/server.ts",
"debug": "nodemon --inspect src/server.ts",
"start": "node ./build/server.js",
"test": "jest",
"copy": "copyfiles -u 1 src/**/*.!(ts|test.ts) build",
"genOpenApiPlugin": "npx ts-node --files ./scripts/openApiDataSourceGen.ts",
"build": "rm -rf build/ && yarn test && tsc && yarn copy"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"commander": "^10.0.0",
"copyfiles": "^2.4.1",
"jest": "^29.3.1",
"nock": "^13.3.0",
"nodemon": "^2.0.20",
"postman-to-openapi": "^3.0.1",
"svgo": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@aws-sdk/client-athena": "^3.271.0",
"@aws-sdk/client-dynamodb": "^3.266.1",
"@aws-sdk/client-lambda": "^3.272.0",
"@aws-sdk/client-s3": "^3.238.0",
"@aws-sdk/s3-request-presigner": "^3.241.0",
"@google-cloud/bigquery": "^6.1.0",
"@google-cloud/storage": "^6.9.3",
"@supabase/supabase-js": "^2.10.0",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.14",
"@types/jsonpath": "^0.2.0",
"@types/lodash": "^4.14.190",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.18",
"@types/node-fetch": "^2.6.2",
"axios": "^1.2.0",
"base64-arraybuffer": "^1.0.2",
"dynamodb-data-types": "^4.0.1",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"firebase-admin": "^11.5.0",
"formdata-node": "4",
"graphql": "^16.6.0",
"graphql-request": "^5.1.0",
"jsonpath": "^1.1.1",
"lodash": "^4.17.21",
"loglevel": "^1.8.1",
"morgan": "^1.10.0",
"node-fetch": "2",
"openapi-types": "^12.1.0",
"openblocks-core": "^0.0.7",
"openblocks-sdk": "0.0.38",
"pino": "^8.11.0",
"prom-client": "^14.2.0",
"proxy-agent": "^5.0.0",
"stylis": "^4.1.3",
"swagger-client": "^3.18.5",
"typescript": "^4.9.3",
"yaml": "^2.2.2"
},
"resolutions": {
"@apidevtools/json-schema-ref-parser": "9.0.7"
},
"packageManager": "yarn@3.3.1"
}