-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.41 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
{
"name": "probase",
"version": "0.1.0",
"private": true,
"engines": {
"node": "24.x"
},
"scripts": {
"dev": "next dev",
"dev:prod": "dotenv -e .env.prod -- next dev",
"build": "next build",
"start": "next start",
"launch": "next build && next start",
"lint": "next lint",
"test": "vitest run --project unit --project components",
"test:watch": "vitest --project unit --project components",
"test:db": "docker compose -f docker-compose.test.yml up -d --wait",
"test:db:down": "docker compose -f docker-compose.test.yml down",
"test:integration": "dotenv -e .env.test -- vitest run --project integration",
"test:all": "dotenv -e .env.test -- vitest run",
"local": "dotenv -e .env.local --",
"prod": "tsx scripts/prod.ts",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "node prisma/seed.mjs"
},
"dependencies": {
"@auth/prisma-adapter": "^2.7.2",
"@fortawesome/fontawesome-svg-core": "^7.3.1",
"@fortawesome/free-solid-svg-icons": "^7.3.1",
"@fortawesome/react-fontawesome": "^3.5.0",
"@prisma/client": "^6.19.3",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"katex": "^0.18.7",
"lucide-react": "^1.45.0",
"next": "^15.5.25",
"next-auth": "^5.0.0-beta.25",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.6.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.7",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.3",
"@testing-library/user-event": "^14.6.7",
"@types/katex": "^0.16.7",
"@types/node": "^24.13.4",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@vitejs/plugin-react": "^4.7.0",
"autoprefixer": "^10.4.20",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.5",
"eslint-config-next": "^15.5.25",
"eslint-config-prettier": "^10.1.8",
"happy-dom": "^20.14.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"prisma": "^6.19.3",
"tailwindcss": "^3.4.14",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.70.0",
"vitest": "^4.1.11"
},
"packageManager": "npm@11.19.0"
}