-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.62 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
{
"name": "neuronlab-frontend-v2-scaffold",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"check": "npm run lint && npm run typecheck && npm run test:run && npm run build",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:e2e": "playwright test tests/e2e",
"test:accessibility": "playwright test tests/accessibility",
"test:visual": "playwright test tests/visual",
"doctor": "npx react-doctor@latest --json"
},
"dependencies": {
"@heroui/react": "^3.2.4",
"@heroui/styles": "^3.2.4",
"@monaco-editor/react": "^4.7.0",
"katex": "^0.18.4",
"mermaid": "^11.16.1",
"monaco-editor": "0.56.0",
"next": "^16.3.0",
"next-themes": "^0.4.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"@playwright/test": "^1.62.1",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.3",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.5",
"eslint": "^9",
"eslint-config-next": "16.3.0",
"jsdom": "^30.0.1",
"react-doctor": "^0.9.11",
"react-grab": "^0.1.50",
"react-scan": "^0.5.7",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.1.10"
}
}