-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.16 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
{
"name": "firehose-node",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node --esm src/index.ts",
"dev": "nodemon --esm src/index.ts",
"lint": "eslint .",
"lint:watch": "nodemon -e ts,json --exec eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier . -w",
"format:full": "npm run format && npm run lint:fix",
"build": "tsc",
"deploy": "npm run build && pm2 restart firehose-node"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/express": "^4.17.17",
"@types/node": "^20.4.5",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"amqplib": "^0.10.3",
"express": "^4.21.0",
"irc-message-ts": "^3.0.6",
"ws": "^8.17.1",
"zod": "^3.22.3"
}
}