-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.01 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
{
"name": "discord-mk8d-nita-record",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"type": "module",
"scripts": {
"lint": "npx @biomejs/biome check",
"db:run": "docker run --name mk8d-nita-record-db -e POSTGRES_PASSWORD=postgres -e POSTGRES_USER=postgres -e POSTGRES_DB=postgres -p 25432:5432 -d postgres",
"db:migrate": "atlas schema apply --url \"postgres://postgres:postgres@localhost:25432?sslmode=disable\" --file schema.hcl --auto-approve",
"db:clean": "atlas schema clean --url \"postgres://postgres:postgres@localhost:25432?sslmode=disable\" --auto-approve",
"db:reset": "npm run db:clean && npm run db:migrate",
"test": "vitest",
"start": "node .",
"deploy:commands": "node ./src/deploy-commands.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@planetscale/database": "^1.19.0",
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"postgres": "^3.4.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"vitest": "^2.1.5"
}
}