-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.79 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.79 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "jayvee",
"version": "0.6.5",
"scripts": {
"nx": "nx",
"format": "nx format:write",
"build": "nx run-many --target build",
"build:prod": "nx run-many --target build --configuration=prod",
"lint": "nx run-many --target lint --max-warnings 0",
"test": "nx run-many --target test",
"generate": "nx run language-server:generate",
"reproduce": "nx run interpreter:run -d repro.jv -dg exhaustive",
"benchmark": "nx run benchmark:run",
"example:cars": "nx run interpreter:run -d example/cars.jv -dg peek",
"graph:cars": "nx run interpreter:run -g example/cars.jv -d -dg peek",
"example:gtfs": "nx run interpreter:run -d example/gtfs-static.jv -dg peek",
"example:gtfs-rt": "nx run interpreter:run -d example/gtfs-rt.jv -dg peek",
"example:workbooks": "nx run interpreter:run -d example/workbooks-xlsx.jv -dg peek",
"example:vehicles": "nx run interpreter:run -d -e DB_HOST=localhost -e DB_PORT=5432 -e DB_USERNAME=postgres -e DB_PASSWORD=postgres -e DB_DATABASE=postgres example/electric-vehicles.jv -dg peek"
},
"private": true,
"dependencies": {
"@docusaurus/core": "3.4.0",
"@docusaurus/preset-classic": "3.4.0",
"@mdx-js/react": "^3.0.0",
"assert": "^2.0.0",
"chalk": "^4.1.2",
"clsx": "^2.0.0",
"commander": "^8.0.0",
"exceljs": "^4.3.0",
"fast-csv": "^4.3.6",
"follow-redirects": "^1.15.2",
"fp-ts": "^2.16.5",
"gtfs-realtime-bindings": "^1.1.1",
"jszip": "^3.10.1",
"langium": "^4.0.0",
"mime-types": "^2.1.35",
"monaco-editor": "^0.34.1",
"monaco-languageclient": "^4.0.3",
"pg": "^8.8.0",
"prism-react-renderer": "^2.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"sqlite3": "^5.1.5",
"tslib": "^2.3.0",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "^3.17.2",
"vscode-uri": "^3.0.8",
"yaml": "^2.7.1"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@docusaurus/module-type-aliases": "3.4.0",
"@docusaurus/theme-mermaid": "^3.4.0",
"@docusaurus/tsconfig": "3.4.0",
"@docusaurus/types": "3.4.0",
"@eslint/js": "^9.34.0",
"@nx-extend/docusaurus": "^3.1.1",
"@nx/esbuild": "21.4.1",
"@nx/eslint": "21.4.1",
"@nx/eslint-plugin": "21.4.1",
"@nx/js": "21.4.1",
"@nx/node": "21.4.1",
"@nx/react": "21.4.1",
"@nx/rollup": "21.4.1",
"@nx/vite": "21.4.1",
"@nx/web": "21.4.1",
"@nx/webpack": "21.4.1",
"@nx/workspace": "21.4.1",
"@stylistic/eslint-plugin": "^5.2.3",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@swc/helpers": "0.5.12",
"@types/follow-redirects": "^1.14.1",
"@types/mime-types": "^2.1.1",
"@types/node": "^22.18.0",
"@types/pg": "^8.6.5",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/vscode": "^1.56.0",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"@vscode/vsce": "^2.19.0",
"esbuild": "^0.19.2",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-vitest": "^0.5.4",
"jest-environment-jsdom": "^29.7.0",
"jiti": "2.4.2",
"langium-cli": "^4.0.0",
"memfs": "^4.9.3",
"nock": "13.3.1",
"nx": "21.4.1",
"prettier": "^3.6.2",
"ts-node": "10.9.1",
"typescript": "5.8.3",
"typescript-eslint": "^8.29.0",
"vite": "6.3.4",
"vitest": "^3.2.4"
},
"overrides": {
"remark-parse@8.0.3": {
"trim": "^0.0.3"
},
"package-json@6.5.0": {
"got": "^11.8.5"
}
}
}