forked from Skript-MC/Swan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.12 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
{
"name": "swan",
"version": "3.1.1",
"description": "Bot discord de Skript-MC.",
"main": "./build/src/main.js",
"scripts": {
"build": "rm -rf build && tsc",
"build:win": "rd /s /q \"build\"&& tsc",
"exec": "node --no-warnings ./build/src/main.js",
"start": "npm run build && NODE_ENV=production npm run exec",
"start:win": "npm run build:win&& set NODE_ENV=production&& npm run exec",
"dev": "npm run build && NODE_ENV=development npm run exec",
"dev:win": "npm run build:win&& set NODE_ENV=development&& npm run exec",
"tools:update-databases": "npm run build && node ./build/tools/update-databases.js",
"tools:update-databases:win": "npm run build:win&& node ./build/tools/update-databases.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"authors": [
"noftaly (noftaly#0359)",
"Romitou (Romitou#9685)"
],
"contributors": [
"Olyno (Olyno#1234)",
"WeeskyBDW (WeeskyBDW#6172)",
"Aless (Aless#6161)",
"Skylyxx (Skylyxx#8816)",
"iTrooz_ (iTrooz_#2050)"
],
"license": "GPL-3.0-only",
"engines": {
"node": ">=12.0.0"
},
"homepage": "https://github.com/Skript-MC/Swan#readme",
"bugs": {
"url": "https://github.com/Skript-MC/Swan/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skript-MC/Swan.git"
},
"dependencies": {
"@octokit/rest": "^19.0.5",
"@octokit/types": "^8.1.0",
"@sapphire/decorators": "^6.0.0",
"@sapphire/discord-utilities": "^3.0.0",
"@sapphire/discord.js-utilities": "^6.0.0",
"@sapphire/framework": "^4.0.1",
"@sapphire/pieces": "^3.6.0",
"@sapphire/plugin-logger": "^3.0.1",
"@sapphire/plugin-subcommands": "^4.0.0",
"@sapphire/utilities": "^3.11.0",
"@sentry/node": "^7.30.0",
"axios": "^0.27.2",
"common-tags": "^1.8.2",
"core-js": "^3.27.1",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"he": "^1.2.0",
"jaro-winkler": "^0.2.8",
"lodash.groupby": "^4.6.0",
"module-alias": "^2.2.2",
"moment": "^2.29.4",
"mongoose": "^6.8.3",
"mongoose-autopopulate": "^0.17.1",
"nanoid": "^3.3.4",
"node-cron": "^3.0.2",
"node-emoji": "^1.11.0",
"pupa": "^2.1.1",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.8",
"source-map-support": "^0.5.21",
"turndown": "^7.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/he": "^1.1.2",
"@types/lodash.groupby": "^4.6.7",
"@types/mongoose-autopopulate": "^0.10.3",
"@types/node": "^18.11.18",
"@types/node-cron": "^3.0.7",
"@types/node-emoji": "^1.8.2",
"@types/semver": "^7.3.13",
"@types/turndown": "^5.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-noftalint": "^2.14.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "45.0.2",
"typescript": "^4.9.4"
},
"_moduleAliases": {
"@/app": "./build/src",
"@/conf": "./build/config",
"@/root": "./build/"
}
}