forked from skyra-project/skyra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.03 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "skyra",
"version": "5.4.1",
"description": "Multipurpose Discord Bot built on Klasa",
"main": "dist/Skyra.js",
"scripts": {
"pm2:delete": "pm2 delete Skyra",
"pm2:logs": "pm2 logs Skyra --lines=200",
"pm2:restart": "pm2 restart Skyra",
"pm2:start": "pm2 start pm2.ecosystem.yml",
"pm2:dev": "yarn pm2:start --env development",
"pm2:stop": "pm2 stop Skyra",
"start": "node dist/Skyra.js",
"lint": "eslint --ext ts src --fix",
"test": "jest",
"test:watch": "jest --watch",
"update": "yarn upgrade-interactive --latest",
"build": "tsc -b src",
"build-clear": "rm -rf dist && tsc -b src",
"build-tlds": "tsc ./src/lib/util/Links/Build/script.ts && node ./src/lib/util/Links/Build/script.js",
"watch": "tsc -b src -w",
"dev": "yarn build && yarn start",
"dockerps": "powershell .\\docker\\ps-skyra.ps1",
"dockerbash": "bash ./docker/bash-skyra.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyra-project/skyra.git"
},
"keywords": [
"discord.js",
"klasa",
"bot",
"standalone"
],
"contributors": [
"kyranet <[email protected]>"
],
"private": true,
"author": "kyranet <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/skyra-project/skyra/issues"
},
"dependencies": {
"@klasa/querybuilder": "^0.0.1",
"@klasa/request-handler": "^0.0.3",
"@klasa/snowflake": "^0.0.1",
"@klasa/utils": "^0.0.5",
"@skyra/decorators": "^1.0.0",
"canvas": "^2.6.1",
"canvas-constructor": "^3.2.0",
"confusables": "^1.0.0",
"diff": "^4.0.2",
"discord.js": "github:discordjs/discord.js#fe7df708e44e0280dfaf0f8e457b154781bb5140",
"emoji-regex": "^9.0.0",
"fs-nextra": "^0.5.1",
"gifencoder": "^2.0.1",
"he": "^1.2.0",
"klasa": "github:dirigeants/klasa#settings",
"klasa-dashboard-hooks": "github:kyranet/klasa-dashboard-hooks#master",
"lavalink": "^2.10.0",
"module-alias": "^2.2.2",
"node-fetch": "^2.6.0",
"pg": "^8.2.1",
"veza": "^1.1.0",
"ws": "^7.3.0",
"zlib-sync": "^0.1.6"
},
"devDependencies": {
"@discordjs/collection": "^0.1.5",
"@favware/graphql-pokemon": "^4.0.1",
"@playlyfe/gql": "^2.6.2",
"@types/backoff": "^2.5.1",
"@types/diff": "^4.0.2",
"@types/he": "^1.1.1",
"@types/jest": "^25.2.3",
"@types/module-alias": "^2.0.0",
"@types/node": "^14.0.6",
"@types/node-fetch": "^2.5.7",
"@types/pg": "^7.14.3",
"@types/ws": "^7.2.4",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"chokidar": "^3.4.0",
"eslint": "^6.8.0",
"eslint-config-bamboo": "^4.0.1",
"jest": "^26.0.1",
"jest-circus": "^26.0.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"_moduleAliases": {
"@utils": "dist/lib/util",
"@lib": "dist/lib",
"@root": "dist"
},
"resolutions": {
"acorn": "^7.1.1",
"minimist": "^1.2.2",
"kind-of": "^6.0.3",
"jest-environment-jsdom": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz",
"jest-jasmine2": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.0.2.tgz"
}
}