-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·60 lines (60 loc) · 1.52 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
{
"name": "@fabricelements/shared-helpers",
"description": "Shared helpers.",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Erny Sans",
"license": "BSD-3-Clause",
"version": "0.2.39",
"repository": {
"type": "git",
"url": "https://github.com/FabricElements/shared-helpers.git"
},
"engines": {
"node": ">=18"
},
"files": [
"lib"
],
"exports": {
".": "./lib/index.js",
"./user": "./lib/user.js",
"./media": "./lib/media.js"
},
"dependencies": {
"@google-cloud/bigquery": "^7.9.1",
"@google-cloud/pubsub": "^4.8.0",
"@types/express": "^5.0.0",
"firebase-admin": "^12.7.0",
"firebase-functions": "^6.1.0",
"libphonenumber-js": "^1.11.13",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"sharp": "^0.33.5"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/node-fetch": "^3.0.3",
"@types/sharp": "^0.32.0",
"eslint": "^9.14.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"overrides": {
"eslint": "^9.14.0"
},
"scripts": {
"build": "npm run clear && npm run lint && npm run compile",
"build:watch": "npm run clear && npm run lint && npm run compile:watch",
"clear": "rm -rf ./lib",
"compile": "tsc -p ./tsconfig.json",
"compile:watch": "tsc --watch -p ./tsconfig.json",
"eslint": "eslint",
"lint": "eslint",
"lint:fix": "eslint --fix"
}
}