forked from anastasia-v-r/Sakuria
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.72 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "sakuria",
"version": "1.0.31",
"description": "Sakuria general purpose discord bot",
"main": "./src/sakuria.ts",
"scripts": {
"test": "npm i && ts-mocha -p ./tsconfig.json ./src/tests/logic.test.ts",
"dev": "npx prisma generate --schema ./src/prisma/schema.prisma && nodemon ./src/sakuria.ts",
"setup": "npm i && npm run prettify && ts-node ./src/setup.sakuria.ts && npm run gen-db",
"prettify": "npx prettier --write \"./**/*.ts\" && npx prettier --write \"./**/*.json\"",
"gen-db": "npx prisma generate",
"reset-db": "npx prisma migrate reset -f",
"migrate-db": "npx prisma migrate dev",
"init-db": "npx prisma migrate dev --name init"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Geoxor/sakuria.git"
},
"keywords": [
"bot",
"discord-bot",
"anime-bot",
"anime"
],
"author": "Geoxor",
"license": "ISC",
"bugs": {
"url": "https://github.com/Geoxor/sakuria/issues"
},
"homepage": "https://github.com/Geoxor/sakuria#readme",
"dependencies": {
"@discordjs/voice": "^0.5.5",
"@jimp/plugin-fisheye": "^0.16.1",
"axios": "^0.21.1",
"chalk": "^4.1.1",
"discord.js": "^13.0.1",
"dotenv": "^10.0.0",
"get-image-colors": "^4.0.0",
"jimp": "^0.16.1",
"music-metadata": "^7.11.3",
"node": "16.6.1",
"prisma": "^2.28.0",
"ts-mocha": "^8.0.0",
"tweetnacl": "^1.0.3",
"typescript": "^4.3.5"
},
"devDependencies": {
"@prisma/client": "^2.28.0",
"@types/chai": "^4.2.21",
"@types/get-image-colors": "^4.0.1",
"@types/mocha": "^9.0.0",
"@types/mv": "^2.1.2",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"mv": "^2.1.1",
"nodemon": "^2.0.12",
"ts-node": "^10.1.0"
}
}