-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 922 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
36
37
38
{
"name": "twitter-art-bot",
"version": "1.0.0",
"description": "",
"main": "index.mjs",
"scripts": {
"start": "node index.mjs",
"dev": "nodemon index.mjs",
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"author": "cqhung1412",
"license": "ISC",
"dependencies": {
"@improbable-eng/grpc-web": "^0.15.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"craiyon": "^1.0.0",
"dotenv": "^16.0.2",
"form-data": "^4.0.0",
"google-protobuf": "^3.21.2",
"grpc": "^1.24.11",
"node-fetch": "^2.6.7",
"twitter-api-v2": "^1.12.5"
},
"devDependencies": {
"gts": "^3.1.1",
"jest": "^29.0.3",
"nodemon": "^2.0.19",
"typescript": "^4.9.3",
"@types/node": "^14.11.2"
}
}