-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.52 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "pomo-timer",
"version": "0.1.0",
"private": true,
"author": "Max Beyer",
"description": "Minimal pomodoro timer in the menu bar",
"homepage": "./",
"main": "./public/electron.js",
"dependencies": {
"@chakra-ui/react": "^1.7.3",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@fontsource/montserrat": "^4.5.1",
"@fontsource/quicksand": "^4.5.1",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"electron-store": "^8.0.1",
"electron-util": "^0.17.2",
"framer-motion": "^5.5.5",
"react": "^17.0.2",
"react-countdown-circle-timer": "^2.5.4",
"react-dom": "^17.0.2",
"react-feather": "^2.0.9",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"web-vitals": "^2.1.2",
"worker-timers": "^7.0.44"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron:dev": "electron .",
"electron:start": "concurrently -k \"cross-env BROWSER=none yarn start\" \"wait-on -i 250 -w 250 http://localhost:3000 && electronmon .\"",
"electron:package:mac": "npm run build && electron-builder -m -c.extraMetadata.main=build/electron.js",
"electron:package:win": "yarn build && electron-builder -w -c.extraMetadata.main=build/electron.js",
"electron:package:linux": "yarn build && electron-builder -l -c.extraMetadata.main=build/electron.js",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"browserslist": {
"production": [
"last 1 electron version"
],
"development": [
"last 1 electron version"
]
},
"devDependencies": {
"concurrently": "^6.5.1",
"cross-env": "^7.0.3",
"electron": "^16.0.5",
"electron-builder": "^22.14.5",
"electronmon": "^2.0.2",
"eslint": "^8.5.0",
"eslint-config-airbnb": "^19.0.3",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"wait-on": "^6.0.0"
},
"build": {
"appId": "com.maxbeyer.Pomo",
"productName": "Pomo",
"files": [
"**/*",
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "deb"
}
}
}