-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.57 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
{
"name": "translation-api",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"engines": {
"node": "20"
},
"scripts": {
"env": "sudo apt update && sudo apt install snapd && sudo snap install pdftk",
"lint": "eslint --ext .js,.ts .",
"build": "tsc",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"logs": "firebase functions:log",
"serve:firebase": "node scripts/serve-firebase.js",
"serve:express": "npm run build && node build/index.js",
"predeploy": "npm run build && npm run env",
"deploy": "firebase deploy --only functions"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lipe-alves/translation-api.git"
},
"author": "Felipe Alves",
"license": "ISC",
"bugs": {
"url": "https://github.com/lipe-alves/translation-api/issues"
},
"homepage": "https://github.com/lipe-alves/translation-api#readme",
"dependencies": {
"cors": "^2.8.5",
"express-multipart-file-parser": "^0.1.2",
"firebase": "^10.8.1",
"firebase-admin": "^11.8.0",
"firebase-functions": "^4.3.1",
"puppeteer": "^22.10.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-import": "^2.25.4",
"firebase-functions-test": "^3.1.0",
"typescript": "^4.9.0"
}
}