-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.04 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
{
"name": "gsfm",
"version": "0.12.3",
"license": "BSD-3-Clause",
"private": true,
"scripts": {
"dev:next": "next dev --webpack",
"dev": "concurrently npm:dev:*",
"prebuild": "npm run codegen",
"build": "NEXT_PUBLIC_URL=https://gsfm.maayanlab.cloud next build --webpack",
"start": "next start",
"lint": "next lint",
"codegen:kysely": "kysely-codegen",
"codegen:trpc": "ts-node src/lib/trpc/codegen.ts",
"codegen": "concurrently npm:codegen:*",
"version": "npm run build && ts-node src/cli/version-compose.ts && git add docker-compose.yaml && docker compose build gsfm-app && docker compose push gsfm-app"
},
"dependencies": {
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.1.4",
"@tanstack/react-query": "^5.90.19",
"@trpc/client": "^11.8.1",
"@trpc/next": "^11.8.1",
"@trpc/react-query": "^11.8.1",
"@trpc/server": "^11.8.1",
"@trpc/tanstack-react-query": "^11.8.1",
"@types/mdx": "^2.0.13",
"classnames": "^2.5.1",
"glob": "^13.0.0",
"immutable": "^5.1.4",
"kysely": "^0.28.10",
"kysely-codegen": "^0.19.0",
"next": "^16.1.4",
"onnxruntime-node": "1.23.2",
"pg": "^8.17.2",
"pg-cursor": "^2.16.2",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-supersub": "^1.0.0",
"uuid": "^13.0.0",
"zod": "^4.3.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^25",
"@types/pg": "^8.16.0",
"@types/pg-cursor": "^2.7.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9.2.1",
"copy-webpack-plugin": "^13.0.1",
"daisyui": "^5.5.14",
"eslint": "^9",
"eslint-config-next": "16.1.4",
"kysely-ctl": "^0.20.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"postcss": "^8",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}