-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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": "neko-discord",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"deploy-commands": "npx tsc && node dist/deploy-commands.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/rest": "^1.0.1",
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"discord.js": "^14.1.2",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"generate-password": "^1.7.0",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"sequelize": "^6.21.3",
"strftime": "^0.10.1",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.13",
"@types/node": "^18.6.4",
"@types/sequelize": "^4.28.14",
"@types/strftime": "^0.9.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"concurrently": "^7.3.0",
"eslint": "^8.21.0",
"nodemon": "^2.0.19",
"typescript": "^4.7.4"
}
}