forked from google/ground-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.93 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
{
"name": "functions",
"main": "dist/index.js",
"description": "Cloud Functions for Firebase",
"scripts": {
"clean": "rm -rf node_modules dist *.log",
"lint": "eslint --ext .js,.ts src/",
"lint:fix": "npm run lint -- --fix",
"shell": "npx firebase functions:shell",
"emulators": "npx firebase emulators:start --only functions,firestore --project",
"login": "firebase login",
"deploy": "npm run build && npx firebase deploy --project",
"logs": "npx firebase functions:log",
"test": "npm run build && jasmine dist/**/*.spec.js",
"build": "npm install && tsc",
"watch": "npm run build && tsc --watch"
},
"dependencies": {
"@fast-csv/format": "4.3.5",
"@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/jasmine": "^4.3.5",
"@types/jsonstream": "0.8.30",
"@types/node": "18.7.13",
"@types/terraformer__wkt": "2.0.0",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-absolute-imports": "^0.0.3",
"eslint-plugin-prettier": "^4.2.1",
"firebase-functions-test": "^3.2.0",
"firebase-tools": "13.6.0",
"gts": "^3.1.1",
"jasmine": "^5.1.0",
"prettier": "^2.8.1",
"ts-mocha": "^10.0.0",
"typescript": "4.8.4",
"wkt": "0.1.1"
},
"_moduleAliases": {
"@": "dist"
}
}