-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 818 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 818 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
27
28
29
30
31
32
33
{
"name": "anifarm",
"version": "3.0.1",
"description": "A farming bot",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"deploy": "ts-node src/deploy.ts",
"start": "node prod/index.js"
},
"author": "bartick",
"license": "MIT",
"dependencies": {
"better-sqlite3": "^7.5.1",
"canvas": "^2.9.1",
"discord.js": "^14.8.0",
"dotenv": "^16.0.0",
"javascript-time-ago": "^2.5.9",
"mongoose": "^6.5.2",
"mongoose-long": "^0.5.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.5.0",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"nodemon": "^2.0.15",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}