-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 855 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 855 Bytes
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
{
"name": "wheatley",
"version": "2.0.0",
"description": "Your friendly Antistatique assistant",
"main": "app.js",
"scripts": {
"dev": "nodemon app.js",
"start": "node app.js",
"deploy": "bun x esbuild app.js --bundle --outfile=wheatley --format=cjs --platform=node && ssh [email protected] rm /home/slackbot/www/wheatley && scp ./wheatley [email protected]:~/www/ && rm wheatley"
},
"repository": "[email protected]:antistatique/wheatley.git",
"author": "Antistatique <[email protected]>",
"license": "MIT",
"dependencies": {
"@slack/bolt": "^4.2.1",
"axios": "^1.8.3",
"cheerio": "^1.0.0",
"concurrently": "^9.1.2",
"date-fns": "^4.1.0",
"dotenv": "^16.4.7",
"firebase": "^11.4.0",
"nanoid": "^5.1.3",
"nodemon": "^3.1.9",
"ramda": "^0.30.1"
}
}