generated from tuataria/ts-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.45 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
{
"name": "kc-ts",
"version": "1.0.0",
"description": "Bot for the Kindness Challenge, written using TypeScript",
"main": "dist/src/bot.js",
"scripts": {
"start": "node --harmony dist/src/bot.js",
"build": "tsc -p .",
"build-clear": "rm -rf dist && tsc -p .",
"dev": "tsc -p . && node --harmony dist/src/bot.js",
"dev-clear": "rm -rf dist && tsc -p . && node --harmony dist/src/bot.js",
"test": "eslint src",
"lint": "eslint src --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuataria/kc-ts.git"
},
"keywords": [],
"author": "Tuataria",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/tuataria/kc-ts/issues"
},
"homepage": "https://github.com/tuataria/kc-ts#readme",
"dependencies": {
"@sapphire/decorators": "^2.0.3",
"@sapphire/framework": "^1.0.0-alpha.4",
"@sapphire/plugin-i18next": "^1.3.0",
"@sapphire/type": "^1.1.4",
"@sapphire/utilities": "^1.4.4",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"module-alias": "^2.2.2",
"mongodb": "^3.5.4"
},
"devDependencies": {
"@skyra/eslint-config": "^5.3.3",
"@types/i18next-fs-backend": "^1.0.0",
"@types/mongodb": "^3.3.16",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"typescript": "^4.1.3"
},
"_moduleAliases": {
"@root": "dist",
"@lib": "dist/src/lib"
}
}