-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.46 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
{
"name": "@the-tricktionary/functions",
"version": "1.0.0",
"description": "the cloud functions that run stuff behind the scenes",
"author": "Svante Bengtson <svante@the-tricktionary.com>",
"license": "MIT",
"scripts": {
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"build": "tsc -p tsconfig.production.json",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "16"
},
"main": "dist/index.js",
"bugs": {
"url": "https://github.com/the-tricktionary/functions/issues"
},
"homepage": "https://github.com/the-tricktionary/functions#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/the-tricktionary/functions.git"
},
"dependencies": {
"firebase-admin": "^10.0.0",
"firebase-functions": "^3.16.0",
"node-mailjet": "^3.3.4",
"stripe": "^8.184.0"
},
"devDependencies": {
"@types/node-mailjet": "^3.3.7",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"typescript": "^4.4.4"
},
"private": true
}