-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.2 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
{
"private": true,
"name": "dartsmate",
"productName": "DartsMate",
"description": "Analyze, track and compare your dart games.",
"version": "0.3.0",
"author": "DartsMate Contributors",
"main": "app/background.js",
"repository": "https://github.com/derechtenap/dartsmate",
"scripts": {
"dev": "nextron",
"build": "nextron build",
"build:all": "nextron build --all",
"build:win32": "nextron build --win --ia32",
"build:win64": "nextron build --win --x64",
"build:mac": "nextron build --mac --x64",
"build:linux": "nextron build --linux",
"postinstall": "electron-builder install-app-deps",
"lint": "eslint . --max-warnings 0 --report-unused-disable-directives",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write .",
"release": "electron-builder --publish always"
},
"dependencies": {
"electron-log": "^5.2.4",
"electron-serve": "^1.3.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.3.9"
},
"devDependencies": {
"@mantine/charts": "^7.15.0",
"@mantine/core": "^7.15.0",
"@mantine/dropzone": "^7.15.0",
"@mantine/form": "^7.15.0",
"@mantine/hooks": "^7.15.0",
"@mantine/modals": "^7.15.0",
"@mantine/notifications": "^7.15.0",
"@next/eslint-plugin-next": "^14.2.20",
"@tabler/icons-react": "^3.24.0",
"@types/node": "^20.17.10",
"@types/react": "^18.3.16",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"dexie": "^4.0.10",
"dexie-react-hooks": "^1.1.7",
"electron": "^33.2.1",
"electron-builder": "^24.13.3",
"embla-carousel-react": "^7.1.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^8.10.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-prettier": "^4.2.1",
"next": "^14.2.20",
"next-i18next": "^15.4.0",
"nextron": "^9.4.0",
"postcss": "^8.4.49",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "2.8.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-image-file-resizer": "^0.4.8",
"recharts": "^2.12.7",
"use-elapsed-time": "^3.0.4",
"uuid": "^9.0.1"
}
}