-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.33 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@santima10/audio2summary",
"version": "0.0.1",
"main": "index.js",
"private": true,
"repository": "[email protected]:SantiMA10/audio2summary.git",
"author": {
"name": "Santiago Martin Agra",
"email": "[email protected]"
},
"license": "CC-BY-NC-4.0",
"scripts": {
"lint": "eslint . --ext .ts,.js --ignore-path .gitignore .",
"prebuild": "rm -rf ./dist",
"build": "npx tsc",
"start": "node -r dotenv/config dist/src/index.js",
"start:o11y": "node -r dotenv/config -r ./o11y.js dist/src/index.js",
"start:dev": "ts-node-dev -r dotenv/config --ignore-watch node_modules ./src/index.ts",
"test": "APP_ENV=\"test\" jest",
"test:watch": "yarn test --watch",
"predeploy:app": "yarn build",
"deploy:app": "gcloud app deploy",
"predeploy:run": "yarn build",
"deploy:run": "gcloud run deploy --max-instances 1 --cpu 1 --memory 2Gi --source ."
},
"dependencies": {
"@google-cloud/speech": "^5.1.0",
"@google-cloud/storage": "^6.8.0",
"@google-cloud/tasks": "^3.0.5",
"@hapi/hapi": "^21.1.0",
"@opentelemetry/auto-instrumentations-node": "0.34.0",
"@opentelemetry/exporter-metrics-otlp-proto": "^0.34.0",
"@opentelemetry/exporter-trace-otlp-proto": "0.34.0",
"@opentelemetry/sdk-metrics": "^1.8.0",
"@opentelemetry/sdk-node": "0.34.0",
"dotenv": "^16.0.3",
"fluent-ffmpeg": "^2.1.2",
"get-audio-duration": "^3.1.1",
"get-mp3-duration": "^1.0.0",
"http-status-codes": "^2.2.0",
"node-fetch": "2",
"zod": "^3.20.2"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.8",
"@santima10/eslint-config": "2.2.0",
"@swc/core": "^1.3.23",
"@swc/jest": "^0.2.24",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/jest": "^29.2.4",
"@types/node": "16",
"@types/node-fetch": "2",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^29.3.1",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
},
"prettier": "@santima10/eslint-config/.prettierrc.json"
}