forked from ECAM-Brussels/e-cam
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.56 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.56 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
88
89
{
"type": "module",
"private": true,
"scripts": {
"codegen": "wait-on http://localhost:8000/health && graphql-codegen",
"dev": "vinxi dev",
"reset": "prisma migrate reset",
"build": "NODE_OPTIONS='--max-old-space-size=4096' vinxi build",
"start": "vinxi start",
"test": "vitest"
},
"dependencies": {
"@babel/standalone": "^7.28.3",
"@fontsource/fira-sans": "^5.0.20",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@prisma/client": "^6.17.1",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.3",
"@solidjs/start": "^1.1.7",
"@tanstack/solid-table": "^8.21.3",
"@types/babel__standalone": "^7.1.9",
"@viz-js/viz": "^3.11.0",
"arctic": "^3.5.0",
"bcryptjs": "^3.0.2",
"chart.js": "^4.5.0",
"crypto-js": "^4.2.0",
"cytoscape": "^3.31.2",
"cytoscape-dagre": "^2.5.0",
"date-fns": "^3.6.0",
"dedent-js": "^1.0.1",
"file-saver": "^2.0.5",
"function-plot": "^1.25.0",
"fuse.js": "^7.0.0",
"graphql-request": "^7.1.0",
"js-yaml": "^4.1.0",
"json-stable-stringify": "^1.3.0",
"katex": "^0.16.11",
"lodash-es": "^4.17.21",
"mathlive": "^0.100.0",
"mermaid": "^11.4.1",
"micromark": "^4.0.0",
"micromark-extension-math": "^3.1.0",
"node-env-run": "^4.0.2",
"perfect-freehand": "^1.2.2",
"pyodide": "^0.27.4",
"solid-js": "^1.9.7",
"solid-prism-editor": "^1.2.0",
"typescript": "^5.5.4",
"vinxi": "^0.5.7",
"xlsx": "^0.18.5",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.3"
},
"overrides": {
"vite": "^5.4.14"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@solidjs/testing-library": "^0.8.8",
"@tailwindcss/typography": "^0.5.13",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/crypto-js": "^4.2.2",
"@types/cytoscape-dagre": "^2.3.3",
"@types/file-saver": "^2.0.7",
"@types/js-yaml": "^4.0.9",
"@types/katex": "^0.16.7",
"@types/lodash-es": "^4.17.12",
"@types/sharedworker": "^0.0.121",
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"jsdom": "^24.1.0",
"postcss": "^8.4.39",
"prisma": "^6.17.1",
"prisma-json-types-generator": "^3.3.0",
"tailwindcss": "^3.4.4",
"vitest": "^1.6.0",
"wait-on": "^8.0.4"
},
"graphql": {
"schema": "http://symapi:8000/graphql",
"documents": "**/*.{graphql,js,ts,jsx,tsx}"
}
}