-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.58 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
75
76
77
78
79
80
81
82
83
84
{
"name": "datashield",
"version": "1.0.0",
"description": "DataShield is a self-hosted service that lets businesses know if these employees haven't had compromised data",
"homepage": "https://github.com/WhiteMuush/DataShield#readme",
"bugs": {
"url": "https://github.com/WhiteMuush/DataShield/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WhiteMuush/DataShield.git"
},
"license": "SEE LICENSE IN LICENSE",
"author": "Melvin PETIT (WhiteMuush)",
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"predev": "prisma migrate status || echo '\\n[!] Pending migrations or DB unreachable. If the app errors on a missing table, run: npm run db:migrate\\n'",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"seed": "dotenv -e .env.local -- tsx prisma/seed.ts",
"db:up": "docker compose up -d db",
"db:down": "docker compose down",
"db:init": "sh scripts/db-init.sh",
"db:migrate": "prisma migrate deploy",
"postinstall": "prisma generate",
"prepare": "sh .githooks/install.sh",
"seed:dev": "dotenv -e .env.local -- tsx prisma/seed.dev.ts"
},
"dependencies": {
"@aws-sdk/client-identitystore": "^3.1069.0",
"@base-ui/react": "^1.5.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@prisma/adapter-pg": "^7.8.0",
"@prisma/client": "^7.8.0",
"@tanstack/react-table": "^8.21.3",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"ldapts": "^8.1.8",
"lucide-react": "^1.18.0",
"next": "^15.5.19",
"next-auth": "^5.0.0-beta.31",
"pg": "^8.21.0",
"prisma": "^7.8.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-grid-layout": "^2.2.3",
"recharts": "^3.8.1",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^25.9.3",
"@types/pg": "^8.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.0.0",
"@types/react-grid-layout": "^2.1.0",
"autoprefixer": "^10.5.0",
"dotenv": "^17.4.2",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.4",
"eslint-config-next": "^15.5.19",
"tailwindcss": "^3.4.19",
"tsx": "^4.22.4",
"typescript": "^5.9.3",
"vitest": "^4.1.9"
},
"overrides": {
"postcss": "^8.5.10",
"@hono/node-server": "^1.19.14"
}
}