-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.11 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
{
"name": "fcs-sru-aggregator-ui",
"private": true,
"version": "1.0.0",
"license": "GPL-3.0-or-later",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/clarin-eric/fcs-sru-aggregator-ui.git"
},
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "tsc -b && vite build",
"build:bundle": "tsc -b && vite --mode bundle build",
"lint": "eslint .",
"build:antlr-ng": "npm run build:antlr-ng:fcs-ql && npm run build:antlr-ng:lexcql",
"build:antlr-ng:fcs-ql": "antlr-ng -Dlanguage=TypeScript -v -l --exact-output-dir -o src/parsers/ src/vendor/fcs-ql/FCSLexer.g4 src/vendor/fcs-ql/FCSParser.g4",
"build:antlr-ng:lexcql": "antlr-ng -Dlanguage=TypeScript -v -l --exact-output-dir -o src/parsers/ src/vendor/fcs-ql/LexLexer.g4 src/vendor/fcs-ql/LexParser.g4"
},
"dependencies": {
"@clarin-eric/fcs-sru-aggregator-api-adapter-typescript": "^1.5.2",
"@nozbe/microfuzz": "^1.0.0",
"@tanstack/react-query": "^5.100.9",
"antlr4ng": "^3.0.16",
"axios": "^1.16.0",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"i18next": "^25.8.17",
"i18next-resources-to-backend": "^1.2.1",
"react": "^18.3.1",
"react-bootstrap": "^2.10.10",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-i18next": "^16.5.6",
"react-router": "^7.14.2",
"react-slugify": "^4.0.1",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.6.0",
"@types/picomatch": "^4.0.3",
"@types/prismjs": "^1.26.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^5.1.4",
"antlr-ng": "^1.0.10",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^6.1.1",
"eslint-plugin-react-refresh": "^0.4.26",
"estree-walker": "^3.0.3",
"globals": "^17.6.0",
"magic-string": "^0.30.21",
"picomatch": "^4.0.4",
"rollup-plugin-visualizer": "^6.0.5",
"simple-git": "^3.36.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.59.1",
"vite": "^7.3.1"
}
}