forked from KeziahMoselle/tempus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.59 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "tempus",
"description": " A simple yet featureful pomodoro in the tray/menubar",
"version": "1.7.0",
"author": "Keziah Moselle (https://github.com/KeziahMoselle)",
"private": true,
"main": "./public/app.js",
"homepage": "./",
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm run react-start\" \"wait-on http://localhost:3000 && electron .\"",
"build": "npm run react-build && build -c.extraMetadata.main=build/app.js",
"release": "npm run react-build && build -c.extraMetadata.main=build/app.js --publish always",
"format": "prettier src/**/*.{js,jsx,json} --write",
"react-start": "cross-env BROWSER=none react-scripts start",
"react-build": "react-scripts build",
"react-test": "react-scripts test",
"react-eject": "react-scripts eject"
},
"dependencies": {
"auto-launch": "^5.0.5",
"chart.js": "^2.7.3",
"electron-is-dev": "^1.0.1",
"electron-log": "^3.0.1",
"electron-positioner": "^4.1.0",
"electron-store": "^2.0.0",
"electron-updater": "^4.0.6",
"got": "^9.6.0",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"prettier": "^1.18.2",
"react-calendar-heatmap": "^1.8.0",
"react-tooltip": "^3.9.2"
},
"devDependencies": {
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"electron": "^4.0.7",
"electron-builder": "^20.38.5",
"electron-devtools-installer": "^2.2.4",
"react": "^16.8.3",
"react-dom": "^16.8.3",
"react-scripts": "^2.1.5",
"typescript": "^3.3.3333",
"wait-on": "^3.2.0"
},
"build": {
"linux": {
"target": [
{
"target": "deb",
"arch": [
"x64"
]
}
],
"maintainer": "Keziah Moselle",
"icon": "./assets/"
},
"appId": "com.electron.tempus",
"productName": "Tempus",
"extends": null,
"publish": [
{
"provider": "github",
"owner": "KeziahMoselle",
"repo": "tempus"
}
],
"files": [
"build/**/*"
],
"directories": {
"buildResources": "assets"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"last 2 Chrome versions"
],
"keywords": [
"pomodoro",
"tray",
"electron"
],
"repository": {
"type": "git",
"url": "git+https://github.com/keziahmoselle/tempus.git"
}
}