-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.11 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
{
"name": "typescript-discord-starter-bot",
"version": "1.0.0",
"main": "dist/index.js",
"type": "commonjs",
"engines": {
"node": ">=16.14.0",
"npm": "*"
},
"scripts": {
"start": "npm run build && node dist/index.js",
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"lint:fix": "eslint --fix '**/*.js' '**/*.ts' && prettier --write '**/*.{js,ts,json,md}'"
},
"keywords": [],
"author": "Wiz",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/luxon": "^2.0.7",
"@types/node": "^16.11.11",
"@types/ramda": "^0.27.59",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"prettier": "^2.5.1",
"typescript": "^4.4.4"
},
"dependencies": {
"@discordjs/builders": "^0.9.0",
"@discordjs/rest": "^0.1.0-canary.0",
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"luxon": "^2.1.1",
"mongoose": "^6.0.12",
"nanoid": "^3.1.30",
"node-fetch": "^2.6.6",
"ramda": "^0.27.1",
"wokcommands": "^1.5.3"
},
"description": ""
}