-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "tweet-to-pic-api",
"version": "0.0.1",
"description": "API for converting Twitter tweets to images.",
"main": "index.js",
"engines": {
"node": ">=14.1.0",
"npm": ">=6.14.6"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently --kill-others \"nodemon ./index.js\" \"cd client && npm start\"",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rohanprasadofficial/tweet-to-pic-api.git"
},
"keywords": [
"tweet-to-pic",
"twitter",
"twitter-avatar",
"tweets"
],
"author": "Rohan Prasad",
"license": "MIT",
"bugs": {
"url": "https://github.com/rohanprasadofficial/tweet-to-pic-api/issues"
},
"homepage": "https://github.com/rohanprasadofficial/tweet-to-pic-api#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"puppeteer": "^5.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"concurrently": "^5.3.0",
"nodemon": "^2.0.7"
}
}