This repository was archived by the owner on Feb 6, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.48 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.48 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
{
"name": "functions",
"version": "2.2.0",
"scripts": {
"prebuild": "node ./scripts/copy-templates.js",
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"serve": "npm run build && firebase serve --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"format": "prettier . --write"
},
"main": "lib/index.js",
"dependencies": {
"@google-cloud/storage": "^5.18.1",
"cors": "^2.8.5",
"date-fns": "^2.28.0",
"firebase-admin": "^10.0.2",
"firebase-functions": "^3.17.1",
"js-beautify": "^1.14.0",
"jsdom": "^19.0.0",
"mailchimp-api-v3": "^1.15.0",
"node-fetch": "^2.6.1",
"nodemailer": "^6.7.2",
"puppeteer": "^2.1.1",
"rimraf": "^3.0.2",
"simple-git": "^3.15.0",
"unzipper": "^0.10.11",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/js-beautify": "^1.13.3",
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.5",
"@types/node-fetch": "^2.5.8",
"@types/nodemailer": "^6.4.4",
"@types/puppeteer": "^2.0.1",
"@types/rimraf": "^3.0.2",
"@types/unzipper": "^0.10.5",
"@types/uuid": "^8.3.4",
"prettier": "^2.5.1",
"prettier-plugin-organize-imports": "^2.3.4",
"pretty-quick": "^3.1.3",
"tslint": "^6.1.3",
"typescript": "^4.1.3"
},
"private": true,
"engines": {
"node": "16"
}
}