-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.36 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.36 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
{
"name": "converter",
"version": "1.0.0",
"private": true,
"scripts": {
"generate": "tsx scripts/generate-types.ts",
"predev": "npm run generate",
"dev": "vite",
"prebuild": "npm run generate",
"build": "vite build",
"preview": "vite preview",
"lint": "npx prettier . --check && eslint .",
"lint-fix": "npx prettier . --write && eslint . --fix",
"test": "tsx tests/test.ts"
},
"dependencies": {
"@mantine/core": "^9.2.1",
"@mantine/hooks": "^9.2.1",
"json-diff": "^1.0.6",
"jsonschema": "^1.5.0",
"openspace-api-js": "^0.9.11",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.8.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/xml2js": "^0.4.14",
"@vitejs/plugin-react": "^6.0.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.6.0",
"json-schema-to-typescript": "^15.0.4",
"prettier": "^3.8.3",
"tsx": "^4.22.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.3",
"vite": "^8.0.13",
"vite-plugin-node-polyfills": "^0.26.0"
}
}