-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.15 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
{
"name": "djs-template",
"version": "2.0.0",
"description": "An template for discord.js in javascript",
"main": "src/app.js",
"type": "module",
"scripts": {
"format:check": "prettier --check .",
"format": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"build": "npm run lint:check && npm run format:check",
"build:fix": "npm run lint:fix && npm run format",
"dev": "nodemon .",
"test": "npm run build:fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hvlxh/djs-template.git"
},
"author": "hvlxh / default27",
"license": "MIT",
"bugs": {
"url": "https://github.com/hvlxh/djs-template/issues"
},
"homepage": "https://github.com/hvlxh/djs-template#readme",
"dependencies": {
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"glob": "^10.3.9"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "3.0.3"
}
}