-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 883 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": "mettabot-static",
"version": "1.0.0",
"description": "A pep talk generator for experimenting with css/svg animation, speech synthesis, and chat bot APIs.",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "NODE_ENV='dev' nodemon server.js",
"deploy": "git push heroku main"
},
"author": "Erich Keil aka zenlex",
"license": "MIT",
"engines": {
"node": "16.x"
},
"devDependencies": {
"nodemon": "^2.0.15"
},
"type": "commonjs",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"twitter-api-v2": "^1.11.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenlex/mettabot-static.git"
},
"bugs": {
"url": "https://github.com/zenlex/mettabot-static/issues"
},
"homepage": "https://github.com/zenlex/mettabot-static#readme"
}