This repository has been archived by the owner on Jan 20, 2022. It is now read-only.
generated from zaida04/akairo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.53 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
{
"name": "yoki",
"version": "1.0.0",
"description": "A template for Akairo based TS Discord.js Bots",
"main": "./dist/index.js",
"private": true,
"scripts": {
"start:bot": "npm run build && node ./src/bot/dist/index.js --trace-warnings",
"start:dash": "node dist/src/dashboard/index.js",
"precheck": "rimraf src/bot/dist && rimraf libs/logger/dist",
"build": "pnpm recursive run build --filter @yoki/*",
"preinstall": "npx only-allow pnpm",
"knex:init": "knex migrate:latest production",
"lint": "npx eslint src/ libs/",
"lint:fix": "npx eslint src/ libs/ --fix"
},
"prettier": {
"semi": true,
"trailingComma": "all",
"printWidth": 120,
"tabWidth": 4,
"endOfLine": "auto"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaida04/Yoki.git"
},
"author": "Zaid",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaida04/Yoki/issues"
},
"homepage": "https://github.com/zaida04/Yoki#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.16.0",
"eslint-config-marine": "^7.2.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-unused-imports": "^0.1.3",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@types/common-tags": "^1.8.0",
"knex": "^0.21.14",
"mysql": "^2.18.1",
"typescript": "^3.9.7"
}
}