-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "ballebot-3.0",
"version": "1.0.0",
"main": "index.js",
"author": "tauz-hub <[email protected]>",
"scripts": {
"dev": "nodemon src/index.ts",
"commit": "git add . && gitmoji --commit && git push",
"commit:partial": "gitmoji --commit",
"build": "tsc",
"test": "jest",
"start": "node dist/index.js"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"gitmoji-cli": "^5.0.1",
"jest": "^28.1.3",
"nodemon": "^2.0.18",
"prettier": "^2.7.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/jest": "^28.1.6",
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"eris": "^0.17.0",
"imgur": "^2.2.0",
"sqlite": "^4.1.1",
"sqlite3": "^5.0.8",
"ts-jest": "^28.0.7"
}
}