-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) 路 2.84 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) 路 2.84 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
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ask_easy",
"version": "0.1.0",
"private": true,
"scripts": {
"prisma:generate": "prisma generate",
"typecheck": "tsc --noEmit",
"dev": "cross-env NODE_ENV=development tsx watch src/server.ts",
"build": "next build",
"start": "tsx src/server.ts",
"lint": "eslint . --report-unused-disable-directives --max-warnings 3",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,css,html}'",
"prepare": "husky",
"test": "vitest",
"test:integration": "vitest run --config vitest.integration.config.mts",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:setup": "prisma generate && prisma db push",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"scripts:get-test-ids": "tsx scripts/get-test-ids.ts",
"stress:seed": "tsx stress-tests/seed.ts",
"stress:run": "tsx stress-tests/run.ts"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{css,html,json,md}": [
"prettier --write"
]
},
"prisma": {
"seed": "pnpm run db:seed"
},
"dependencies": {
"@embedpdf/core": "^2.3.0",
"@embedpdf/engines": "^2.3.0",
"@embedpdf/plugin-document-manager": "^2.3.0",
"@embedpdf/plugin-render": "^2.3.0",
"@embedpdf/plugin-scroll": "^2.3.0",
"@embedpdf/plugin-viewport": "^2.3.0",
"@prisma/client": "6.8.2",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@socket.io/redis-adapter": "^8.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"ioredis": "^5.9.2",
"iron-session": "^8.0.4",
"lucide-react": "^0.562.0",
"next": "16.1.1",
"pdf-lib": "^1.17.1",
"radix-ui": "^1.4.3",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-resizable-panels": "^2.0.19",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"tailwind-merge": "^3.4.0",
"tsx": "^4.21.0"
},
"devDependencies": {
"@prisma/config": "6.8.2",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.1.2",
"cross-env": "^10.1.0",
"eslint": "^9",
"eslint-config-next": "16.1.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"happy-dom": "^20.4.0",
"husky": "^8.0.0",
"lint-staged": "^16.2.7",
"pg": "^8.18.0",
"prettier": "^3.7.4",
"prisma": "6.8.2",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vite-tsconfig-paths": "^6.0.3",
"vitest": "^4.0.16"
}
}