-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.15 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
{
"name": "triton-bot",
"version": "3.0.0",
"description": "A bot to verify purchases of Triton",
"main": "src/index.js",
"repository": "[email protected]:diogotcorreia/triton-bot.git",
"author": "Diogo Correia <[email protected]>",
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"babel-preset-latest-node": "^5.5.1",
"husky": "^7.0.2",
"nodemon": "^2.0.12",
"pino-pretty": "^7.2.0",
"prettier": "^2.3.2"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"crypto": "^1.0.1",
"discord-api-types": "^0.22.0",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"knex": "^0.95.10",
"mysql": "^2.18.1",
"pino": "^7.4.1"
},
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon src/index.js --exec babel-node | pino-pretty -c -l -t",
"build": "babel src -d dist",
"postinstall": "npm run build",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"migrate": "knex migrate:latest",
"migrate:rollback": "knex migrate:rollback"
}
}