-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
34 lines (34 loc) · 1.12 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
{
"name": "roblox-manager",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"winBuild": "rd build /s /q & cls & npx tsc --project ./",
"linuxBuild": "rm build -r ; clear ; npx tsc --project ./",
"winStart": "npm run winBuild & node build/index.js",
"linuxStart": "npm run linuxBuild ; node build/index.js",
"winUpdate": "cls & npm run winBuild & node build/update.js",
"linuxUpdate": "clear ; npm run linuxBuild ; node build/update.js",
"startWithNoBuild": "node build/index.js"
},
"keywords": [],
"author": "zachariapopcorn#8105",
"license": "ISC",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@types/express": "^4.17.13",
"axios": "^0.21.4",
"body-parser": "^1.20.0",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"funcaptcha": "^1.0.15",
"noblox.js": "^4.12.0"
},
"devDependencies": {
"typescript": "^4.4.4"
}
}