-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "i_need_a_dog_pic",
"version": "1.0.0",
"description": "A simple Twitter Bot that sends dog pics",
"main": "src/index.ts",
"scripts": {
"build": "rm -rf dist/ && tsc",
"start": "node dist/src/index.js",
"dev": "nodemon",
"clean": "rm -rf coverage dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-push": "yarn build"
}
},
"author": "Isaac J Curtiss",
"license": "ISC",
"dependencies": {
"axios": "^0.20.0",
"dotenv": "^8.2.0",
"env-var": "^6.3.0",
"es6-promise": "^4.2.8",
"image-to-base64": "^2.1.1",
"isomorphic-fetch": "^2.2.1",
"keyword-in-tweet": "^1.2.1",
"moment": "^2.28.0",
"node-fetch": "^2.6.1",
"ts-node": "^9.0.0",
"tslib": "^2.0.1",
"twit": "^2.2.11",
"twitter": "^1.7.1",
"unsplash-js": "^6.3.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/image-to-base64": "^2.1.0",
"@types/node": "^14.11.1",
"@types/node-fetch": "^2.5.7",
"@types/twit": "^2.2.28",
"@types/twitter": "^1.7.0",
"@types/unsplash-js": "^6.0.1",
"husky": "^4.3.0",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
}
}