-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "halos-console",
"version": "0.0.1",
"description": "Frontend of halOS",
"author": "Harald Pehl <[email protected]>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/hal/halos-console.git"
},
"type": "module",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"format": "prettier --check --write .",
"lint": "eslint . --ext .ts,.tsx",
"dev": "vite --open",
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@patternfly/react-charts": "^7.1.2",
"@patternfly/react-core": "^5.1.2",
"@patternfly/react-icons": "^5.1.2",
"@patternfly/react-styles": "^5.1.2",
"@patternfly/react-table": "^5.1.2",
"luxon": "^3.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1",
"tslib": "^2.6.2"
},
"devDependencies": {
"@html-eslint/eslint-plugin": "^0.21.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/luxon": "^3.3.7",
"@types/node": "^20.10.4",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"json5": "^2.2.2",
"express": "^4.18.2",
"prettier": "^3.1.0",
"typescript": "^5.3.3",
"vite": "^5.0.7",
"vite-tsconfig-paths": "^4.2.1"
},
"overrides": {
"tsconfig-paths": {
"json5": "^2.2.2"
}
}
}