generated from federation-interservices-d-informatique/fiibot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.54 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
44
45
46
{
"name": "@federation-interservices-d-informatique/fiibot-template",
"version": "1.1.6",
"description": "Common template for FII bots",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"test": "echo \"Hello\"",
"lint": "eslint . -c .eslintrc.yml",
"lint-fix": "eslint . -c .eslintrc.yml --fix",
"format": "prettier 'src/**/*.ts' --write",
"start-build": "tsc && node dist/index.js",
"migrate:dev": "prisma migrate dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/federation-interservices-d-informatique/fiibot-template.git"
},
"keywords": [
"fii",
"discord-bot"
],
"author": "FII Dev team & contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/federation-interservices-d-informatique/fiibot-template/issues"
},
"homepage": "https://github.com/federation-interservices-d-informatique/fiibot-template#readme",
"devDependencies": {
"@types/node": "^20.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@federation-interservices-d-informatique/fiibot-common": "^4.0.10",
"@prisma/client": "^5.2.0",
"discord.js": "^14.13.0",
"prisma": "^5.2.0"
}
}