-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
{
"name": "nextjs-pastebin",
"version": "1.0.0",
"description": "A modern, dark-themed Pastebin-like application built with Next.js.",
"main": "index.js",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start"
},
"keywords": [
"nextjs",
"pastebin",
"hastebin",
"dark-theme"
],
"author": "Aitooor",
"license": "MIT",
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.6.2",
"cassandra-driver": "^4.8.0",
"cookie": "^1.1.1",
"dotenv": "^17.2.3",
"highlight.js": "^11.11.1",
"ioredis": "^5.9.2",
"knex": "^3.1.0",
"level": "^10.0.0",
"mongodb": "^7.0.0",
"mysql2": "^3.16.2",
"next": "16.1.6",
"next-auth": "^4.24.13",
"node-cron": "^4.2.1",
"path": "^0.12.7",
"pg": "^8.18.0",
"react": "latest",
"react-dom": "latest",
"react-icons": "^5.5.0",
"react-window": "^2.2.6",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/dotenv": "^8.2.3",
"@types/node": "^25.1.0",
"@types/node-cron": "^3.0.11",
"@types/react": "^19.2.10",
"@types/uuid": "^11.0.0",
"typescript": "latest"
}
}