-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.89 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.89 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "bot2025",
"version": "3.0.0",
"description": "Sistema de recrutamento e suporte do Discord com banco de dados SQLite e documentação web",
"main": "index.js",
"private": true,
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"build": "next build",
"web": "next dev",
"web-build": "next build && next start",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf .next node_modules/.cache",
"postinstall": "echo \"✅ Dependências instaladas com sucesso!\""
},
"keywords": [
"discord",
"bot",
"recruitment",
"support",
"database",
"sqlite",
"documentation",
"api",
"nextjs",
"react",
"automation"
],
"author": "Nobre",
"license": "MIT",
"dependencies": {
"@radix-ui/react-slot": "^1.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cors": "^2.8.5",
"discord.js": "^14.21.0",
"dotenv": "^17.0.1",
"express": "^4.18.2",
"lucide-react": "^0.294.0",
"next": "^14.2.30",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sqlite3": "^5.1.6",
"tailwind-merge": "^2.0.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.30",
"nodemon": "^3.0.2",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/meuNobre/bot2025"
},
"bugs": {
"url": "https://github.com/meuNobre/bot2025/issues"
},
"homepage": "https://github.com/meuNobre/bot2025#readme"
}