-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.15 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@ground/functions",
"version": "0.0.1",
"main": "dist/index.js",
"description": "Cloud Functions for Firebase",
"files": [
"dist"
],
"nx": {
"name": "functions",
"targets": {
"build": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "tsc"
}
},
"clean": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "rm -rf dist *.log"
}
},
"lint": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "eslint src"
}
},
"test": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "jasmine --config=jasmine.json"
},
"dependsOn": [
"build"
]
},
"format:check": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "prettier --check \"src/**/*.ts\""
}
},
"shell": {
"command": "firebase functions:shell"
},
"emulate": {
"command": "firebase emulators:start --only functions,firestore --project demo-local"
},
"logs": {
"command": "firebase functions:log"
},
"deploy": {
"executor": "nx:run-commands",
"configurations": {
"staging": {
"command": "firebase deploy --project ground-dev-sig --only functions"
},
"production": {
"command": "firebase deploy --project YOUR-PROD-PROJECT --only functions"
}
},
"dependsOn": ["build"]
},
"watch": {
"executor": "nx:run-commands",
"options": {
"cwd": "{projectRoot}",
"command": "tsc --watch"
}
}
}
},
"dependencies": {
"@fast-csv/format": "catalog:",
"@google-cloud/functions-framework": "catalog:",
"@ground/lib": "workspace:*",
"@ground/proto": "workspace:*",
"@terraformer/wkt": "catalog:",
"busboy": "catalog:",
"cookie-parser": "catalog:",
"cors": "catalog:",
"firebase-admin": "catalog:",
"firebase-functions": "catalog:",
"google-auth-library": "catalog:",
"googleapis": "catalog:",
"http-status-codes": "catalog:",
"immutable": "catalog:",
"jsonstream-ts": "catalog:",
"module-alias": "catalog:",
"nodemailer": "catalog:",
"sanitize-html": "catalog:"
},
"engines": {
"node": "22",
"pnpm": "10.30.3"
},
"private": true,
"devDependencies": {
"@types/busboy": "catalog:dev",
"@types/cookie-parser": "catalog:dev",
"@types/cors": "catalog:dev",
"@types/express": "catalog:dev",
"@types/geojson": "catalog:dev",
"@types/jasmine": "catalog:dev",
"@types/node": "catalog:dev",
"@types/nodemailer": "catalog:dev",
"@types/sanitize-html": "catalog:dev",
"@types/terraformer__wkt": "catalog:dev",
"firebase-functions-test": "catalog:dev",
"form-data-encoder": "catalog:dev",
"formdata-node": "catalog:dev"
},
"type": "commonjs"
}