-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 984 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 984 Bytes
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
{
"name": "localloop-site",
"private": true,
"version": "0.1.0",
"description": "localLOOP hub and city landing pages",
"author": "Alphin Tom / Mycel UG (haftungsbeschränkt) <alphin@mycel-ai.de>",
"license": "MIT",
"engines": {
"node": ">=25.1.0"
},
"volta": {
"node": "25.1.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "node --test tests/smoke.test.cjs",
"test:e2e": "bun run build && playwright test",
"test:e2e:ci": "playwright test",
"test:all": "node --test tests/smoke.test.cjs && bun run test:e2e",
"check:domains": "node scripts/check-domains.cjs"
},
"dependencies": {
"highlight.js": "^11.11.1",
"mermaid": "^11.12.3",
"next": "16.1.6",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@playwright/test": "^1.58.1"
}
}