forked from google/ground-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.29 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@ground/functions",
"version": "0.0.1",
"main": "dist/index.js",
"description": "Cloud Functions for Firebase",
"scripts": {
"clean": "rm -rf dist *.log",
"ci-all": "npm run ci-local-deps && npm ci",
"ci-local-deps": "npm ci --workspace=../proto --workspace=../lib",
"lint": "eslint --ext .js,.ts src/",
"lint:fix": "npm run lint -- --fix",
"shell": "firebase functions:shell",
"emulators": "firebase emulators:start --only functions,firestore --project local",
"deploy": "firebase login && firebase deploy --project $npm_config_project --only functions",
"logs": "firebase functions:log",
"test": "jasmine --config=jasmine.json",
"build-local-deps": "npm run build --workspace=../proto --workspace=../lib",
"build": "tsc",
"build-all": "npm run build-local-deps && npm run build",
"build-and-test": "npm run build && npm run test",
"build-all-and-test": "npm run build-all && npm run test",
"build-all-and-deploy": "npm run build-all && npm run deploy",
"watch": "tsc --watch"
},
"dependencies": {
"@fast-csv/format": "4.3.5",
"@ground/lib": "file:../lib",
"@ground/proto": "file:../proto",
"@terraformer/wkt": "2.1.2",
"busboy": "1.5.0",
"cookie-parser": "^1.4.6",
"cors": "2.8.5",
"csv-parser": "2.3.3",
"firebase-admin": "12.1.0",
"firebase-functions": "^5.0.1",
"google-auth-library": "6.1.3",
"googleapis": "64.0.0",
"http-status-codes": "1.4.0",
"immutable": "^4.3.6",
"jsonstream-ts": "1.3.6",
"module-alias": "^2.2.2",
"requests": "0.3.0",
"ts-node": "^10.9.1"
},
"engines": {
"node": "18"
},
"private": true,
"devDependencies": {
"@types/busboy": "^1.5.0",
"@types/cookie-parser": "^1.4.4",
"@types/cors": "2.8.12",
"@types/geojson": "^7946.0.14",
"@types/jasmine": "^4.3.5",
"@types/jsonstream": "0.8.30",
"@types/terraformer__wkt": "2.0.0",
"firebase-functions-test": "^3.3.0",
"firebase-tools": "13.6.0",
"form-data-encoder": "^4.0.2",
"formdata-node": "^6.0.3",
"gts": "^5.3.1",
"isolate-package": "^1.18.0",
"jasmine": "^5.1.0",
"prettier": "^2.8.1",
"source-map-support": "^0.5.21",
"ts-mocha": "^10.0.0",
"typescript": "4.8.4",
"wkt": "0.1.1"
},
"type": "commonjs"
}