-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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": "robtic-system",
"module": "src/index.ts",
"type": "module",
"scripts": {
"dev": "nodemon --watch src --ext ts,json --exec \"bun run src/index.ts\"",
"build": "tsc --build --listEmittedFiles",
"start": "NODE_ENV=production bun run dist/index.js"
},
"devDependencies": {
"@types/bun": "latest",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/passport": "^1.0.17",
"@types/passport-discord": "^0.1.15",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^10.0.3",
"groq-sdk": "^0.37.0",
"nodemon": "^3.1.9"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20",
"bun": ">=1.1.0"
},
"dependencies": {
"chalk": "^5.4.1",
"connect-mongo": "^6.0.0",
"discord.js": "^14.25.1",
"dotenv": "latest",
"express": "^5.2.1",
"express-session": "^1.19.0",
"mongoose": "^9.2.4",
"node-cron": "^4.2.1",
"passport": "^0.7.0",
"passport-discord": "^0.1.4",
"pm2": "^6.0.14"
}
}