-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "vnstat-client",
"description": "GUI Client for vnStat network traffic monitor",
"version": "5.0.0-beta",
"license": "GPL-2.0",
"repository": "https://github.com/Hulxv/vnstat-client",
"author": "Hulxxv <[email protected]>",
"main": "app/background.js",
"scripts": {
"dev": "nextron ",
"build": "nextron build --linux --publish never",
"postinstall": "electron-builder install-app-deps",
"clean:next": "if [ -d 'renderer/.next' ]; then rm -rf renderer/.next;fi;",
"clean:build": "if [ -d 'dist' ]; then rm -r dist;fi;",
"clean": "yarn clean:next; yarn clean:build",
"pret": "prettier --write ./**/*.js"
},
"dependencies": {
"axios": "^0.27.2",
"date-fns": "^2.28.0",
"electron-log": "^4.4.7",
"electron-serve": "^1.1.0",
"electron-store": "^8.0.1",
"electron-updater": "^5.0.1",
"knex": "^2.1.0",
"sqlite3": "^5.1.5",
"sudo-prompt": "^9.2.1",
"systeminformation": "^5.11.15"
},
"devDependencies": {
"@amir04lm26/react-modern-calendar-date-picker": "^1.0.1",
"@chakra-ui/react": "^2.1.2",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@nivo/bar": "^0.79.1",
"@nivo/core": "^0.79.0",
"@nivo/line": "^0.79.1",
"electron": "^19.0.11",
"electron-builder": "^23.0.3",
"framer-motion": "^6.3.4",
"lazy-load-list": "^1.2.2",
"next": "^12.1.6",
"nextron": "^8.1.0",
"prettier": "2.6.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hotkeys-hook": "^3.4.6",
"react-icons": "^4.4.0",
"react-json-view": "^1.21.3",
"react-viewport-list": "^5.2.1",
"react-xml-viewer": "^1.3.0"
}
}