-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"scripts": {
"serve": "firebase emulators:start --only functions",
"shell": "firebase functions:shell",
"start": "npm run shell",
"build:dev": "rimraf dist && NODE_ENV=development tsc",
"build:staging": "rimraf dist && NODE_ENV=staging tsc",
"build:production": "rimraf dist && NODE_ENV=production tsc",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"test:run": "jest ./test/ --detectOpenHandles",
"test": "firebase emulators:exec --only auth,firestore,functions 'yarn test:run'"
},
"engines": {
"node": "12"
},
"main": "dist/index.js",
"dependencies": {
"@amplitude/identify": "^1.10.0",
"@amplitude/node": "^1.10.0",
"@amplitude/types": "^1.10.0",
"@google-cloud/connect-firestore": "^2.0.0",
"@google-cloud/firestore": "^4.7.1",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.10.0",
"firebase-admin": "^9.2.0",
"firebase-functions": "^3.11.0",
"passport": "^0.6.0",
"passport-bnet": "^2.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@types/express-session": "^1.17.5",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"babel-jest": "^26.6.3",
"eslint-config-standard-with-typescript": "^22.0.0",
"firebase-functions-test": "^0.3.0",
"firebase-tools": "^9.14.0",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"private": true
}