-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 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
30
31
32
{
"name": "unicorn",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "pnpm run build && pnpm run launch",
"build": "tsc -b",
"launch": "node dist/index.js",
"db:migrate": "pnpm exec prisma migrate dev && pnpm exec prisma generate",
"db:update": "pnpm exec prisma migrate deploy && pnpm exec prisma generate",
"lint": "eslint src/**/* --ext .ts,.d.ts --ignore-path .gitignore",
"lint:fix": "eslint src/**/* --ext .ts,.d.ts --ignore-path .gitignore --fix",
"format": "prettier --plugin-search-dir=. --write **/*.{ts,js,json} --ignore-path .gitignore"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.57.1",
"eslint": "^8.38.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.8.7"
},
"dependencies": {
"@prisma/client": "^4.12.0",
"discord.js": "^14.9.0",
"dotenv": "^16.0.3",
"prisma": "^4.12.0",
"slash-create": "^5.11.0"
}
}