-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
61
62
{
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prisma": "^4.1.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.4"
},
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"check": "tsc --noEmit",
"dev": "ts-node src/index.ts",
"dev:watch": "ts-node-dev src/index.ts",
"prepare": "husky install",
"lint-staged": "lint-staged",
"start": "npx prisma migrate deploy && node dist/index.js",
"test": "jest --passWithNoTests",
"compile-dict": "sh ./script/dict.sh",
"prisma-setup": "prisma generate",
"prebuild": "npm run prisma-setup"
},
"name": "vutd-shovel",
"description": "shovel clone for VUTD",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/v-ut-d/vutd-shovel.git"
},
"keywords": [],
"author": "",
"bugs": {
"url": "https://github.com/v-ut-d/vutd-shovel/issues"
},
"homepage": "https://github.com/v-ut-d/vutd-shovel#readme",
"dependencies": {
"@cm-ayf/readenv": "^1.1.0",
"@discordjs/opus": "^0.8.0",
"@discordjs/voice": "^0.11.0",
"@prisma/client": "^4.1.1",
"axios": "^0.27.2",
"discord.js": "^14.1.1",
"dotenv": "^16.0.1",
"libsodium-wrappers": "^0.7.10",
"node-openjtalk-binding": "git+https://github.com/v-ut-d/node-openjtalk-binding.git",
"node-openjtalk-binding-discordjs": "^1.1.0"
},
"overrides": {
"discord-api-types": ">=0.30.0"
}
}