-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.01 KB
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
{
"name": "template",
"version": "1.0.0",
"description": "TypeScript bot example",
"main": "./dist/index.js",
"type": "commonjs",
"scripts": {
"start": "tsc && yarn built",
"start:dev": "yarn start:dev",
"build": "tsc",
"built": "node ./dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yarn run eslint --fix --ext .ts ./src"
},
"keywords": [],
"author": "RaZe <75721601+RaZeSloth@users.noreply.github.com>",
"license": "ISC",
"dependencies": {
"discord.js": "^14.0.3",
"dotenv": "^16.0.1",
"eslint": "^8.17.0"
},
"devDependencies": {
"@types/node": "^17.0.41",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-promise": "^6.0.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
},
"repository": "https://github.com/RaZeSloth/bot-template-ts.git"
}