forked from nextflow-io/nextflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.42 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.42 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
{
"name": "bionxa-learning-platform",
"version": "1.3.2",
"description": "BioNXA - Interactive learning platform for bioinformatics, biotechnology, and AI-driven computational biology",
"license": "MIT",
"homepage": "https://bionxa.com",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "jest --watch",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:all": "npm run lint && npm run test:ci && npm run test:e2e",
"type-check": "tsc --noEmit",
"validate": "npm run lint && npm run type-check && npm run test:ci",
"postinstall": "node -e \"if (process.env.VERCEL !== '1') { try { require('husky').install() } catch (e) {} }\""
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@next/swc-linux-x64-gnu": "^16.1.6",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.95.2",
"autoprefixer": "^10.4.27",
"framer-motion": "^12.33.0",
"lucide-react": "^0.302.0",
"next": "^14.2.35",
"next-auth": "^4.24.13",
"next-intl": "^4.8.2",
"next-themes": "^0.4.6",
"postcss": "^8.5.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"recharts": "^3.8.1",
"remark-gfm": "^4.0.1",
"resend": "^6.11.0",
"tailwindcss": "^3.4.19",
"typescript": "^5.3.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@playwright/test": "^1.58.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.6",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1"
}
}