-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.04 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
{
"name": "dighub-ui",
"private": true,
"version": "0.0.1",
"type": "module",
"main": "build/main.js",
"engineStrict": true,
"author": "Michael Taylor",
"description": "DigHub Web UI",
"engines": {
"node": ">=20.16.0"
},
"scripts": {
"start": "tsc && vite",
"build": "npm run clean && tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"clean": "rm -rf build",
"prepare": "husky"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.7",
"components": "^0.1.0",
"express": "^4.18.3",
"flowbite": "^2.3.0",
"flowbite-react": "^0.7.3",
"flowbite-typography": "^1.0.3",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.6.2",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"react-webview": "^0.1.0",
"redux-persist": "^6.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.4.1",
"@types/react": "^18.3.4",
"@types/react-dom": "^18.3.0",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"autoprefixer": "^10.4.20",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"electron": "^28.3.3",
"electron-builder": "^24.13.3",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.11",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"wait-on": "^7.2.0"
},
"standard-version": {
"skip": {
"bump": true,
"commit": true,
"tag": true
}
},
"lint-staged": {
"*.+(js|ts|tsx)": "npm run lint:prettier-eslint"
}
}