-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 855 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
{
"name": "twitter-banner",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=18.0.0"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js",
"lint": "eslint",
"lint:fix": "npm run lint:fix:eslint && npm run lint:fix:prettier",
"lint:fix:eslint": "eslint --fix",
"lint:fix:prettier": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.18.2",
"sharp": "^0.29.1",
"twitter-api-client": "^1.3.8"
},
"devDependencies": {
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1"
}
}