-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.65 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
47
48
49
50
{
"name": "getashell",
"version": "1.1.3",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build --experimental-build-mode compile",
"build:image": "docker buildx build -t getashell:testing .",
"clean:containers": "docker rm -f $(docker ps -aq)",
"clean:keys": "ssh-keygen -f ~/.ssh/known_hosts -R [localhost]:2222",
"start": "next start",
"start:docker": "docker run -t -d --name getashell --restart unless-stopped -p 3000:3000 -v ./data:/app/data -v /var/run/docker.sock:/var/run/docker.sock -e SECRET_KEY=verylongsupersecretkeythatnobodywillsee --add-host host.docker.internal:host-gateway getashell:testing",
"lint": "next lint",
"migrate:generate": "drizzle-kit generate",
"migrate": "mkdir -p data/ && drizzle-kit push"
},
"dependencies": {
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.1.1",
"bcrypt": "^5.1.1",
"better-sqlite3": "^9.6.0",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.31.2",
"iron-session": "^8.0.1",
"next": "14.2.4",
"next-safe-action": "^7.5.0",
"postcss-import": "^16.1.0",
"react": "^18.3.1",
"react-dom": "^18",
"react-toastify": "^10.0.5",
"tsx": "^4.18.0",
"winston": "^3.13.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/bcrypt": "^5.0.2",
"@types/better-sqlite3": "^7.6.9",
"@types/node": "^22.2.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.4.19",
"drizzle-kit": "^0.22.8",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.10",
"typescript": "^5"
}
}