-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.59 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": "paraffin-bot",
"version": "1.0.0",
"description": "paraffin discord bot",
"main": "src/main.js",
"scripts": {
"start": "node src/main.js",
"dev": "nodemon",
"lint": "eslint . --ext .js",
"test": "jest",
"test:watch": "jest --watch",
"node-update": "npm i --save-dev node@16 && npm config set prefix=$(pwd)/node_modules/node && export PATH=$(pwd)/node_modules/node/bin:$PATH",
"node-clean": "rm -rf node_modules && rm package-lock.json && npm cache clear --force && npm cache clean --force && npm i",
"node-update-then-clean": "npm run node-update && npm run node-clean-cache"
},
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/paraffin-tutorials-org/Paraffin-Bot.git"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/paraffin-tutorials-org/Paraffin-Bot/issues"
},
"homepage": "https://github.com/paraffin-tutorials-org/Paraffin-Bot#readme",
"dependencies": {
"@discordjs/builders": "^0.11.0",
"@discordjs/rest": "^0.3.0",
"@discordjs/voice": "^0.8.0",
"axios": "^0.25.0",
"discord-api-types": "^0.26.1",
"discord.js": "^13.6.0",
"dotenv": "^14.3.2",
"fs": "^0.0.1-security",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.15",
"pretty-ms": "^7.0.1",
"screenshotmachine": "^2.0.0",
"winston": "^3.4.0"
},
"devDependencies": {
"node": "^16.13.2"
}
}