-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.03 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
43
44
45
46
{
"name": "bot-da-live",
"version": "0.0.1",
"description": "A simple bot app built on Node.js.",
"main": "server.js",
"scripts": {
"start": "nodemon server.js",
"lint": "eslint .",
"test": "jest",
"prepare": "husky install",
"husky-add": "husky add"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.2",
"leveldown": "^6.1.0",
"levelup": "^5.1.1",
"lodash": "^4.17.21",
"node-cron": "^3.0.0",
"node-fetch": "^2.6.6",
"socket.io": "^4.4.0",
"sound-play": "^1.1.0",
"tmi.js": "^1.8.5",
"xml2js": "^0.4.23"
},
"engines": {
"node": "12.x"
},
"license": "MIT",
"devDependencies": {
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"flush-promises": "^1.0.2",
"husky": "^7.0.4",
"jest": "^27.4.7",
"memdown": "^6.1.1",
"nodemon": "^2.0.15"
},
"jest": {
"collectCoverage": true,
"moduleNameMapper": {
"\\.(mp3|xml)$": "<rootDir>/assetsTransformer.js"
}
}
}