-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.54 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
{
"name": "lighthouse",
"version": "1.0.0",
"description": "Web content crawling and political analysis system for Korean online platforms",
"keywords": [
"crawler",
"analysis",
"nlp",
"korean",
"news",
"political-analysis"
],
"author": "",
"license": "MIT",
"scripts": {
"lint": "nx run-many --target=lint --all",
"lint:fix": "nx run-many --target=lint --all --fix",
"typecheck": "nx run-many --target=typecheck --all",
"format": "prettier --check \"apps/**/*.{ts,tsx,js,jsx}\" \"libs/**/*.{ts,tsx,js,jsx}\"",
"format:fix": "prettier --write \"apps/**/*.{ts,tsx,js,jsx}\" \"libs/**/*.{ts,tsx,js,jsx}\"",
"depcheck": "nx run-many --target=depcheck --all",
"check": "pnpm lint && pnpm typecheck && pnpm format",
"test": "nx run-many --target=test --all",
"build": "nx run-many --target=build --all",
"prepare": "husky",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"db:studio": "prisma studio",
"db:reset": "prisma migrate reset"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^2.1.1",
"@eslint/js": "^9.8.0",
"@nx/esbuild": "21.3.11",
"@nx/eslint": "21.3.11",
"@nx/eslint-plugin": "21.3.11",
"@nx/jest": "21.3.11",
"@nx/js": "21.4.0",
"@nx/next": "^21.4.0",
"@nx/node": "^21.3.11",
"@nx/workspace": "^21.3.11",
"@prisma/client": "^6.14.0",
"@swc-node/register": "~1.9.1",
"@swc/cli": "~0.6.0",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.2.1",
"depcheck": "^1.4.7",
"esbuild": "^0.19.2",
"eslint": "^9.8.0",
"eslint-config-next": "^15.5.0",
"eslint-config-prettier": "^10.0.0",
"husky": "^9.1.7",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.5",
"jest-environment-node": "^30.0.2",
"jsonc-eslint-parser": "^2.4.0",
"nx": "21.3.11",
"prettier": "^2.6.2",
"prisma": "^6.14.0",
"ts-jest": "^29.4.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"tsx": "^4.20.3",
"typescript": "^5.9.2",
"typescript-eslint": "^8.29.0"
},
"dependencies": {
"@types/cors": "^2.8.19",
"@types/redis": "^4.0.11",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^4.21.2",
"next": "~15.2.4",
"playwright": "^1.49.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"redis": "^5.8.1"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}