-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.46 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.46 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
43
44
45
46
47
{
"name": "benderirc",
"version": "0.0.1",
"description": "I'll build my own IrcAnywhere, with blackjack and hookers",
"main": "main.js",
"type": "module",
"scripts": {
"build": "esbuild ./main.ts --bundle --platform=node --packages=external --outfile=dist/main.js --format=esm ",
"start": "tsc && node dist/main.js",
"esbuild": "esbuild ./main.ts --bundle --platform=node --packages=external --outfile=dist/main.js --format=esm && nodemon dist/main.js",
"dev": "tsc && nodemon dist/main.js",
"build2": "tsc && esbuild ./main.ts --bundle --platform=node --packages=external --outfile=dist/main.js --format=esm && nodemon dist/main.js",
"lint": "eslint . --ext .ts",
"grunt": "grunt",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"irc",
"cloud"
],
"author": "iam@adamrobins.com",
"license": "MIT",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"irc-framework": "^4.14.0",
"jsonwebtoken": "^9.0.2",
"mercedlogger": "^1.0.1",
"mongodb": "^6.3.0",
"mongoose": "^8.6.4",
"morgan": "^1.10.0",
"mysql": "^2.18.1",
"socket.io": "^4.7.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.1",
"@types/winston": "^2.4.4",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"typescript": "^5.1.3"
}
}