-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.28 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
40
41
42
43
{
"name": "fleco",
"version": "0.1.0",
"description": "I am a community-driven economy Discord bot, my goal is to provide the best economy experience in your Discord Guild for your server's members, I hope I succeed at this!",
"main": "dist/index.ts",
"type": "module",
"scripts": {
"start:bun": "bun run index.ts",
"start": "tsc && node dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"db:setup": "node db_generate.js",
"db:migrate": "node db_generate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fleco-Development/fleco.git"
},
"author": "Fleco Development",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Fleco-Development/fleco/issues"
},
"homepage": "https://github.com/Fleco-Development/fleco#readme",
"dependencies": {
"@fleco/duration": "^0.1.4",
"@js-temporal/polyfill": "^0.4.4",
"@prisma/client": "latest",
"commander": "^11.1.0",
"discord.js": "^14.13.0",
"nanoid": "^5.0.2",
"yaml": "^2.3.3"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"bun-types": "^1.0.6",
"eslint": "^8.51.0",
"prisma": "latest",
"typescript": "^5.2.2"
}
}