-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.58 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
{
"name": "akairotemplate",
"version": "1.0.0",
"description": "A template for Akairo based TS Discord.js Bots",
"main": "dist/src/index.js",
"private": true,
"scripts": {
"build": "npx rimraf dist/ && tsc",
"lint": "npx eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"start": "node -r dotenv/config dist/index.js",
"dev": "npm run build && npm start"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/node": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-marine": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-unused-imports": "^0.1.3",
"nodemon": "^2.0.4",
"prettier": "^2.1.1",
"typescript": "^4.0.2"
},
"dependencies": {
"common-tags": "^1.8.0",
"discord-akairo": "^8.1.0",
"discord.js": "^12.3.1",
"dotenv": "^8.2.0",
"tslib": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zaida04/AkairoTemplate.git"
},
"author": "Zaid",
"license": "MIT",
"bugs": {
"url": "https://github.com/zaida04/AkairoTemplate/issues"
},
"homepage": "https://github.com/zaida04/AkairoTemplate#readme",
"prettier": {
"printWidth": 110,
"tabWidth": 4,
"useTabs": true,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "always",
"proseWrap": "always",
"endOfLine": "auto"
}
}