-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.46 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
{
"name": "ssot-specs-dashboard",
"version": "1.0.0",
"description": "Dashboard for displaying hardware and network configuration of servers.",
"main": "index.js",
"type": "module",
"scripts": {
"prepare": "husky install",
"start": "vite",
"build": "vite build",
"build-preview": "vite build --mode development",
"test": "vitest run",
"lint": "eslint .",
"compile": "tsc --noEmit"
},
"author": "",
"license": "MIT",
"dependencies": {
"@preact/signals": "^1.2.2",
"@sentry/browser": "^7.85.0",
"classnames": "^2.3.2",
"history": "^5.3.0",
"i18next": "^23.6.0",
"preact": "^10.19.2",
"preact-router": "^4.1.2",
"remove-accents": "^0.5.0",
"use-debounce-preact": "^1.0.2"
},
"devDependencies": {
"@preact/preset-vite": "^2.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@types/node": "^18.19.2",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.0",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"eslint": "^8.45.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.31",
"postcss-fail-on-warn": "^0.2.1",
"postcss-import": "^14.1.0",
"prettier": "^2.7.1",
"tailwindcss": "^3.3.3",
"typescript": "^5.0.4",
"vite": "^5.0.6",
"vite-tsconfig-paths": "^4.2.1"
}
}