-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.51 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
{
"name": "new-discord-bot",
"version": "1.0.0",
"main": "src/index.js",
"scripts": {
"clean": "rm -rf build",
"build": "tsc --build",
"start": "npm run clean && npm run build && node build/index.js",
"startNoClean": "npm run build && node build/index.js",
"devStart": "npm run clean && npm run build && node build/index.js --development",
"devStartNoClean": "npm run build && node build/index.js --development"
},
"scripts_formac": {
"clean": "rm -rf build",
"build": "tsc --build",
"start": "npm run clean && npm run build && node build/index.js",
"startNoClean": "npm run build && node build/index.js",
"devStart": "npm run clean && npm run build && node build/index.js --development",
"devStartNoClean": "npm run build && node build/index.js --development"
},
"scripts_forwindows": {
"clean": "del /s /q build",
"build": "tsc --build",
"start": "npm run clean && npm run build && node build/index.js",
"startNoClean": "npm run build && node build/index.js",
"devStart": "npm run clean && npm run build && node build/index.js --development",
"devStartNoClean": "npm run build && node build/index.js --development"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"discord.js": "^14.16.3",
"dotenv": "^16.4.5",
"glob": "^11.0.0",
"ms": "^2.1.3",
"os": "^0.1.2",
"react": "^18.3.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/ms": "^0.7.34",
"@types/react": "^18.3.12"
}
}