-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpackage.json
30 lines (30 loc) · 796 Bytes
/
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
{
"name": "create-discord-bot",
"version": "1.0.0",
"description": "A module-based Discord bot template.",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf ./dist && npx tsc",
"lint": "npx eslint --fix .",
"start": "npm run build && node ./dist/index.js"
},
"dependencies": {
"discord-bot-core-client": "^0.0.4",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/node": "^16.6.1",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
}
}