-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 984 Bytes
/
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
{
"name": "functions",
"scripts": {
"lint": "eslint --fix \"src/**/*\"",
"build": "tsc",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "12"
},
"main": "lib/index.js",
"dependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/request": "^2.48.5",
"@types/twitter": "^1.7.0",
"chai": "^4.3.4",
"firebase-admin": "^9.5.0",
"firebase-functions": "^3.13.2",
"firebase-functions-test": "^0.2.3",
"mocha": "^8.3.2",
"request": "^2.88.2",
"ts-node": "^9.1.1",
"twitter": "^1.7.1",
"typescript": "^4.2.3",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-plugin-import": "^2.22.0"
}
}