-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 896 Bytes
/
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
{
"name": "ballebingo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --transpile-only src/index.ts --trace-warnings",
"commit": "git add . && gitmoji --commit && git push",
"commit:partial": "gitmoji --commit",
"build": "tsc",
"test": "jest",
"start": "node dist/index.js"
},
"dependencies": {
"canvas": "^2.9.3",
"discord.js": "^14.1.1",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"gitmoji-cli": "^5.0.3",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
}
}