-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.83 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.83 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "topicforge",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --webpack",
"start": "next start",
"lint": "eslint src/",
"crawler": "npx tsx scripts/crawler.ts",
"train": "npx tsx scripts/train-model.ts",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"prepare": "husky",
"pre-commit": "lint-staged",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false",
"test:integration": "jest --testPathPatterns=integration",
"test:unit": "jest --testPathPatterns=unit",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:debug": "playwright test --debug",
"setup:db": "npx tsx scripts/setup-database.ts",
"setup:db:dev": "npm run setup:db development",
"setup:db:prod": "npm run setup:db production",
"db:generate": "npx prisma generate",
"db:push": "npx prisma db push",
"db:migrate": "npx prisma migrate dev",
"db:deploy": "npx prisma migrate deploy",
"db:studio": "npx prisma studio",
"db:reset": "npx prisma migrate reset",
"data:export": "npx tsx scripts/export-database.ts",
"data:import": "npx tsx scripts/import-seeds.ts",
"data:import:full": "npx tsx scripts/import-seeds.ts --full",
"data:import:force": "npx tsx scripts/import-seeds.ts --force"
},
"dependencies": {
"@prisma/client": "^6.19.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"axios": "^1.10.0",
"cheerio": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"helmet": "^8.1.0",
"lucide-react": "^0.555.0",
"morgan": "^1.10.0",
"natural": "^8.1.0",
"next": "^16.0.6",
"next-themes": "^0.4.6",
"nodejieba": "^3.4.4",
"puppeteer": "^24.10.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"reflect-metadata": "^0.2.2",
"sonner": "^2.0.5",
"tailwind-merge": "^3.3.1",
"tsyringe": "^4.10.0"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/eslintrc": "^3",
"@next/eslint-plugin-next": "^16.0.6",
"@playwright/test": "^1.53.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/morgan": "^1.9.10",
"@types/node": "^24.10.1",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^16.0.6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.0.11",
"ignore-loader": "^0.1.2",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest-environment-node": "^30.0.0",
"lint-staged": "^16.2.7",
"playwright": "^1.53.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.7.1",
"prisma": "^6.19.0",
"tailwindcss": "^4",
"ts-jest": "^29.2.5",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.4",
"typescript": "^5",
"typescript-eslint": "^8.48.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,mdx,css,html,yml,yaml}": [
"prettier --write"
]
}
}