-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
110 lines (110 loc) · 3.53 KB
/
package.json
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
{
"name": "jayvee",
"version": "0.6.4",
"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",
"example:cars": "nx run interpreter:run -d example/cars.jv -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": "2.4.1",
"@docusaurus/preset-classic": "2.4.1",
"@docusaurus/theme-mermaid": "2.4.1",
"@mdx-js/react": "^1.6.22",
"assert": "^2.0.0",
"chalk": "^4.1.2",
"clsx": "^1.2.1",
"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": "^3.1.2",
"mime-types": "^2.1.35",
"monaco-editor": "^0.34.1",
"monaco-languageclient": "^4.0.3",
"pg": "^8.8.0",
"prism-react-renderer": "^1.3.5",
"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"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@docusaurus/module-type-aliases": "2.4.1",
"@jvalue/eslint-config-jvalue": "^1.3.0",
"@nx-plus/docusaurus": "^15.0.0-rc.0",
"@nx/esbuild": "19.5.4",
"@nx/eslint": "19.5.4",
"@nx/eslint-plugin": "19.5.4",
"@nx/js": "19.5.4",
"@nx/node": "19.5.4",
"@nx/react": "19.5.4",
"@nx/rollup": "19.5.4",
"@nx/vite": "19.5.4",
"@nx/web": "19.5.4",
"@nx/webpack": "19.5.4",
"@nx/workspace": "19.5.4",
"@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": "18.19.11",
"@types/pg": "^8.6.5",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.3.1",
"@vscode/vsce": "^2.19.0",
"esbuild": "^0.19.2",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-vitest": "^0.5.4",
"jest-environment-jsdom": "^29.7.0",
"langium-cli": "^3.1.0",
"memfs": "^4.9.3",
"nock": "13.3.1",
"nx": "19.5.4",
"prettier": "^2.8.7",
"ts-node": "10.9.1",
"typescript": "5.5.4",
"vite": "~5.0.0",
"vitest": "^1.3.1"
},
"overrides": {
"remark-parse@8.0.3": {
"trim": "^0.0.3"
},
"package-json@6.5.0": {
"got": "^11.8.5"
}
}
}