-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 756 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 756 Bytes
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
{
"name": "levi",
"version": "0.0.1",
"description": "discord.js bot",
"main": "index.js",
"scripts": {
"build": "rimraf dist && npx tsc",
"prestart": "npm run build",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc -w\" \"env-cmd -f ./env/dev.env nodemon dist/index.js\""
},
"author": "harshitRV",
"license": "ISC",
"engines": {
"npm": ">=9.6.6",
"node": ">=18.16.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.17",
"@types/node": "^20.3.2",
"concurrently": "^8.2.0",
"env-cmd": "^10.1.0",
"nodemon": "^3.1.0",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@google/generative-ai": "^0.2.0",
"discord.js": "^14.11.0",
"express": "^4.18.2"
}
}