-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 989 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
31
32
33
34
35
36
37
38
39
40
{
"name": "discord-event-bot",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"register-commands": "ts-node src/commands/registerCommands.ts",
"start": "ts-node src/index.ts",
"digitalocean": "npm run start",
"prettier": "prettier --write \"src/**/*.ts\"",
"prettier:check": "prettier --check \"src/**/*.ts\""
},
"dependencies": {
"concurrently": "^9.0.1",
"discord.js": "^14.16.3",
"dotenv": "^10.0.0",
"express": "^4.21.2",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"prettier": "^3.3.3",
"husky": "^8.0.0",
"lint-staged": "^13.0.0"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"arrowParens": "always"
},
"lint-staged": {
"src/**/*.ts": ["prettier --write", "git add"]
}
}