-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.35 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
{
"name": "santria-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:ui": "vitest --ui",
"docker:build": "docker build -t santria-dashboard .",
"docker:run": "docker run -p 3000:3000 santria-dashboard",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down",
"docker:logs": "docker-compose logs -f",
"docker:clean": "docker-compose down -v --remove-orphans",
"deploy:staging": "pnpm build && pnpm test && docker-compose -f docker-compose.yml up -d",
"deploy:prod": "pnpm build && pnpm test && docker-compose --profile production up -d"
},
"dependencies": {
"next": "14.0.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"@types/node": "^20.10.5",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"tailwindcss": "^3.4.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.32",
"zustand": "^4.4.7",
"@tanstack/react-query": "^5.17.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-next": "14.0.4",
"vitest": "^1.1.0",
"@testing-library/react": "^14.1.2",
"@testing-library/jest-dom": "^6.1.6",
"@vitejs/plugin-react": "^4.2.1",
"jsdom": "^23.0.1"
}
}