-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "frogrobo",
"version": "1.0.0",
"description": "A Twitter bot created by TrpFrog using TypeScript and Cloud Functions",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build",
"start": "functions-framework --target=FrogRoboFunction",
"debug": "./node_modules/.bin/ts-node",
"prestart": "npm run build",
"gcp-build": "",
"test": "jest --coverage",
"deploy": "npm run build && ./deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrpFrog/frogrobo.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TrpFrog/frogrobo/issues"
},
"homepage": "https://github.com/TrpFrog/frogrobo#readme",
"dependencies": {
"@google-cloud/functions-framework": "^3.1.3",
"@types/jest": "^29.2.6",
"dotenv": "^16.0.3",
"http-status-codes": "^2.2.0",
"twitter-api-v2": "^1.14.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^32.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}