-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.5 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.5 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
{
"name": "lobbywatch-frontend",
"version": "1.0.0",
"engines": {
"node": ">=22"
},
"description": "Lobbywatch.ch Frontend",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev",
"build": "npm run build:next && npm run build:components",
"build:next": "next build",
"build:components": "rsbuild build",
"start": "next start -p ${PORT:=3000}",
"format": "prettier --write .",
"=== LINT ===": "",
"lint": "concurrently \"npm:lint:*\"",
"lint:format": "prettier --check --cache --cache-strategy content .",
"lint:static": "eslint --fix .",
"lint:ts": "tsc --noEmit",
"=== TEST ===": "",
"test": "vitest",
"test:update": "tsx ./src/api/test/update.ts",
"=== UTILITIES ===": "",
"klog": "find . -name '*.js' -not -path \"./node_modules*\" -not -path \"./.next*\" | xargs wc -l",
"=== HOOKS ===": "",
"prepare": "husky"
},
"author": "Thomas Preusse <t@preus.se> (https://t.preus.se/)",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lobbywatch/website.git"
},
"bugs": {
"url": "https://github.com/lobbywatch/website/issues"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
},
"dependencies": {
"accept-language": "^3.0.20",
"d3-array": "^1.2.4",
"d3-collection": "^1.0.7",
"d3-format": "^1.4.5",
"d3-hierarchy": "^1.1.9",
"d3-time": "^1.1.0",
"d3-time-format": "^2.3.0",
"effect": "^3.18.4",
"express": "^5.2.1",
"next": "^14.2.33",
"querystring": "^0.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"shallow-equal": "^3.1.0",
"swr": "2.3.6"
},
"devDependencies": {
"@rsbuild/core": "^1.6.0",
"@rsbuild/plugin-react": "^1.4.1",
"@types/d3-array": "^1.2.12",
"@types/d3-collection": "^1.0.13",
"@types/d3-format": "^1.4.5",
"@types/d3-hierarchy": "^1.1.11",
"@types/d3-time": "^1.1.4",
"@types/d3-time-format": "^2.3.4",
"@types/node": "^24.9.1",
"@types/react": "^18.3.26",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"concurrently": "^9.2.1",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.33",
"eslint-config-prettier": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"lit": "^3.3.1",
"prettier": "3.6.2",
"tsx": "^4.20.6",
"typescript": "5.9.3",
"vitest": "^4.0.3"
},
"cacheDirectories": [
"node_modules",
".next/cache"
]
}