-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "wandern_bot",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"engines": {
"node": ">=18.0.0 <19"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "TS_NODE=true nodemon ./src/index.ts",
"build": "tsc",
"dev": "TS_NODE=true NODE_OPTIONS=\"-r ts-node/register\" node src/index.ts",
"start": "node ./scripts/create-env.js && node ./dist/index.js"
},
"author": "Andreas Sander ([email protected])",
"license": "MIT",
"dependencies": {
"@supabase/supabase-js": "^1.35.7",
"bree": "^9.1.2",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"masto": "^4.4.0",
"mastodon-api": "^1.3.0",
"node-cron": "^3.0.2",
"prettier": "2.7.1",
"rss-parser": "^3.12.0"
},
"devDependencies": {
"@tsconfig/node17": "^1.0.2",
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.7.23",
"@types/node-cron": "^3.0.4",
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"private": true
}